Tagged Questions
0
votes
0answers
18 views
How do I fill a selection using a defined pattern with photoshop type library?
I'm trying to fill an image with a pattern I've defined previously.
Photoshop.Document document = new Photoshop.Document();
document.Selection.Fill(What goes here?);
I've been searching the net all ...
3
votes
1answer
107 views
Which programming language is simplest to use (for the user) as an integrated scripting language? [closed]
I'm writing a multiple choice test program for teachers. The formula for the marks is:
(points awarded) / (maximum score) * 5 + 1.
This gives a mark in the range [1,6].
Now I want to add a ...
1
vote
3answers
65 views
Is there any compilable into .Net from C#, expandable via C# scripting language?
So 3 things are required:
pure IL/C# generation from script
abilety to throw in C# classes and grammar constructs
simple C# api
Generally I want api like this:
var sctipt = "Script...";
var ...
0
votes
4answers
662 views
execute python script from vb.net
How I could execute a python script from within the VB.NET code?
I would like to use VB.NET for building a GUI for my python script.
This is to be able to create a GUI for the user of a script.
I ...
0
votes
0answers
95 views
Error Retrieving System Restore Points: “Generic Failure”
I have a small application that manages system restore (Create, delete, list). This application has been working for years and now I'm running into issues on several laptops (Windows 7 X86 with recent ...
-1
votes
1answer
189 views
How can I connect to Default mail Client and send an attachment?
I have the following options
Using System.Net.Mail namespace and send mail through SMTPClient
Connecting to Outlook specifically and adding attachment
Using 'MailTo' function in javascript, which ...
4
votes
2answers
884 views
What does $_ TRULY mean in PowerShell? [duplicate]
Possible Duplicate:
What does $_ mean in powershell?
I have already seen someone else's question and answer on the same subject but for me it does not answer the question.
I know how to ...
-3
votes
2answers
858 views
Regex which allows 3 digit before precision and 2 digits after precision
I have written a Regex which will take only integers but I need to rewrite this regex to only allow 3 digit before precision and 2 digits after precision
How to do that?
0
votes
0answers
88 views
inline DEFAULT constraint in CREATE TABLE
For a .NET project recently upgraded to VS2010 from VS2005, I embed a SQL script as a resource within the executable assembly. This SQL script is then invoked at installation time to upgrade the ...
0
votes
2answers
55 views
Regex to allow infinite precision
Following regex only allow till 2 precisions
/^\d+(\.\d{1,2})?$/,
But it should allow any precssion ..how to change this regex to allow any precision value?
Like 12.212121212121212121212...
Now ...
1
vote
5answers
98 views
Replace CSS attribute using Jquery/Javascript
I have following code which have a css class called "formErrorContent"
var promptContent = $('<div>').addClass("formErrorContent").
...
0
votes
4answers
2k views
Inserting session values through Jquery/Javascript
Is it possible to insert session values in session variable through JavaScript or Jquery?
I have did like session["variable_name"] = "some value"; its not working
Even i tried like ...
1
vote
3answers
181 views
C# or Java in command-line/scripting/interpreted environment?
So in Python on a unix environment, for example, we can open up python from terminal, start writing code and immediately run it to test some python library functions. Is there a similar ...
2
votes
1answer
331 views
'TestString' is not declared. It may be inaccessible due to its protection level. (BC30451) [closed]
I am trying out some on the fly code compilation using the VBCodeProvider class. What I want to be able to do is modify a public variable in my assembly in the code.
I have a Public TestString As ...
3
votes
1answer
99 views
Which “scripting languages” can be compiled to 64-bit?
I'm looking for a replacement to VBScript that will allow 64-bit compiling. Can you point me to a resource that shows which languages support this? My Google-Fu seems to be week on this issue.
1
vote
3answers
218 views
Game engine — Should I add a dependency on .NET for scripting?
I am working on a First Person Shooter game as a fun side-project, and started considering marketing the game, and adding scripting support for modding. I was wondering if I should use a traditional ...
0
votes
2answers
83 views
.NET Application framework with build-in runtime scripting
For our new development, we would like to have an framework that would support end-user customization and programming. Something similar a modern ERP systems have (e.g. Navision, Baan/LN, SAP). So an ...
0
votes
1answer
165 views
Script for testing C# console Application and produce profiling results
I have written a C# console application in which I accept a set of inputs from user by Console.ReadLine();. I return the possible replacements of one of the inputs in the set.These are returned as ...
1
vote
1answer
494 views
Get Active Network Connections in VBScript from .Net Properties
There is a .NET method used for retrieving TCP and UDP connection information as listed below:
[Net.NetworkInformation.IPGlobalProperties]::GetIPGlobalProperties().GetActiveTcpConnections()
...
1
vote
2answers
805 views
Powershell 2.0 sudo limitations
Long time reader but new poster.
I've been wrestling with this issue for an entire day and it's driving me nuts. After scouring this site and Google, I'm still stuck. Basically, I can't figure out ...
-2
votes
3answers
52 views
Need some help in downloading pics from a website
I am looking for some help in downloading pics from a website. Here is the problem detail.
URL is basvandenbroek dot com,
suppose when we visit the following page ...
2
votes
1answer
143 views
Instantiating IronPython Types in C# which implement a .NET interface
I am writing a simple plugin system for my .NET app written in C#. I am trying to use IronPython to accomplish this.
In my .NET code i Have created an interface IPlugin, which all Plugins must ...
2
votes
1answer
264 views
Wav files voice to Text
Is there a library that I could use in either a script or a .Net project that does Voice to text?
I have a directory full of voice prompts for dozens of customers and multiple accounts under each ...
2
votes
1answer
61 views
Boo - preventing arbitrary imports
I am currently assessing application scripting language candidates for hosting within a .Net application and have come across Boo. However I am struggling to see from the documentation if there is ...
0
votes
1answer
114 views
VS breaks solution file
I have a (python) script that accomplishes the following:
Scanning a folder looking for .csproj and .vcproj files.
Creating a solution file to contain all the projects by writing text according to ...
2
votes
1answer
210 views
Restricting use of namespaces in MS Script Engine
The .NET Framework has great features to support compiling code at runtime and running it, to achieve some kinds of scripting functionalities. There are already some scripting engines available on ...
5
votes
3answers
263 views
Make log reading efficient
I have a perl script that is used to monitor databases and I'm trying to write it as a powershell script.
In the perl script there is a function that reads through the errorlog and filters out what ...
2
votes
2answers
95 views
Using PowerShell, how can I add a file to a newly created file collection?
How do I create a blank file collection then add a file to it?
This is the pseudo-representaion.
$filelist = get-childitem "c:\somefolder\*"
$keepfiles = new-object psobject #????
$purgefiles = ...
0
votes
0answers
164 views
What's better right now, IronRuby or IronPython? [closed]
I have plenty of experience with both Ruby and Python, and I'm looking to embed either one of these on a C# application I'm developing. I don't really care which, but I'd like to know which one ...
0
votes
0answers
302 views
How to check if WCF services are alive and restart them if needed?
I have a few WCF services that live inside one Windows managed service. These services perform distributed functional testing on several units under test. Quite often Windows on the units goes into ...
0
votes
2answers
357 views
run script on machine from other machine in C#
I'm writing a Web Service (WCF) for my work and i'm looking for a way to
run script on demand on other machine.
We got machines that we connect from RDC, and i want to run a script on it
from another ...
1
vote
1answer
355 views
How do I return a Powershell DataTable object from C# app code?
I'm starting to use Powershell for some development projects and plan to integrate it with .NET, namely C#. Being a beginner (1 day so far), I've taken a few examples online and from some books. One ...
2
votes
4answers
145 views
Would like to migrate away from Batch files and use…?
We currently use Batch files to load procedures, execute script files and call stored procedures by calling the sql sefver utilities cmdutil, dtexec, and osql.
Based on the value of the returned exit ...
1
vote
1answer
47 views
Is there a c# library that supports the parsing and execution of T-sql scripts on SQL CE
I know SQL CE does not support Transact SQL. However, I would think there would be a library out there that can parse a Transact SQL file (at least a subset for TSQL) and execute it for me. For now, ...
1
vote
1answer
145 views
Is there a way to add a table to a Linq-to-SQL dbml in C#?
I am working on some scripts, and was wondering if anyone knew of a way to dynamically add a table from an MSSQL database into a dbml file, just as if one were to do it the normal "drag-n-drop" way. ...
1
vote
3answers
355 views
How to get echo work from a “client” PowerShell script?
I'm running a PowerShell script, which, call another script by itself. In the first script, when I put echo, everything is OK, but I can't get any echo in the second ("client") script to show ...
2
votes
0answers
39 views
Interpreter with “suspend” capability
Are there any language interpreters (e.g. a JavaScript interpreter, Lua interpreter, Python interpreter, etc.) that have the ability for the script to suspend itself, and for the host to resume it ...
0
votes
1answer
330 views
Quick Questions about MSBuild copy task
HI Guys,
Im newbie to MSBuild so may be some questions could sound stupid.
What are these extra files which gets generated while using aspnetcompiler like ...
0
votes
1answer
198 views
IE 8 - script to update browser configuration
For the deployment of a specific Web application on IE (from 6 to 8, but let's concentrate on the 8), I need to set some specific security settings.
There are a lot of them and some are touchy (well, ...
3
votes
1answer
191 views
Looking for a locked down script interpreter
I'm looking for a .NET library that does a specific task.
Say my app has been sent a program (in some script language) and I want my app to run that script. That script could come from an openly ...
4
votes
7answers
2k views
What is powershell good for?
I'm competent C# programmer, and a newbie to powershell. I wonder, what it's good for? Is it more of a programmer's tool or admin's?
Please share your experience. When it would be easier to write a ...
0
votes
3answers
840 views
want to modify a file under Program Files with Win7
I have a small C# program to modify a xml file which is located under Program Files. The machine is a Windows 7 machine. This small program is launched by a batch file (called A.bat) because I want to ...
1
vote
1answer
575 views
Standalone VB.NET Editor that can edit custom files
We currently use a Sax Basic OCX that allows us to edit some custom .bas files and then execute them in our main app. The OCX includes a VB6 language syntax editor and the files do not require any ...
1
vote
2answers
246 views
Is there any low-effort way to embed a scripting language in a .NET application with Intellisense support?
I have a .NET application with commands in it which I'd like users to be able to extend by writing their own commands which will run in an AppDomain with limited permissions. I have a model class ...
2
votes
1answer
116 views
Addon-managers for .NET-applications?
Is there any addon-manager for .NET-applications? I would like to build the "core" of my program with C# or VB.Net and then be able to extend it using some kind of addon-manager/combined scripting and ...
0
votes
6answers
266 views
Scripting language for .net which supports yield and saving the state of the vm
Is there an embeddable scripting language for .Net which supports some kind of yield (program stops and yields control back to host... With next run it continues where it left off)?
Furthermore it ...
4
votes
3answers
124 views
What is the best option to make my .NET UI application scriptable?
I have .NET application and would like to allow users to write macros.
Any easy to use language would do.
However, I don't want to write a compiler, interpreter, debugger.
I know there are many ...
6
votes
8answers
3k views
.net scripting languages
what do people use for scripting in .net apps. New question after MS drops IronPython
IP used to be my favorite; then Lua
What do I mean by scripting. I mean I have a large system management tool ...
0
votes
1answer
49 views
Configuring Sharepoint in .net?
Can you script SharePoint configuration (as in settings done in the "Configure your SharePoint farm" and "Reporting Services Configuration Manager") through .Net ?
Does anyone have any links that ...
2
votes
0answers
468 views
Embedding LuaInterface in C# has a poor performance?
I've embedded the LuaInterface project into an application written in C# using .NET Framework 4.0. After compiling LuaInterface and Lua 5.1 I've referenced them in my application and created a Lua VM ...

