Run Perl Script And Detect When It's Done?
Jul 16, 2010
I'm need to run a perl script from my application and detect when it's done. I plan to check if it's done with a timer so I hear I need to use WaitForSingleObject to detect it's finished
Secondly, this might be the wrong place but I'm asking anyway, I want to send the perl's output to a file so I can read it in when it's done but that part of it isn't working correctly, the exact same string typed into a cmd.exe window works correctly but the shell command still sends the output to the dos window and doesn't generate the file.
NOTE: This is just a test program, it's not how I'm going to do it in the real app.
Imports System.Runtime.InteropServices
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
[Code].....
View 9 Replies
ADVERTISEMENT
Aug 10, 2009
I want to call perl EXE to process something within .NET and i need to get some results from the perl exe.
For example i am going to pass two array to perl exe and i need to return a array form perl.
View 1 Replies
Apr 19, 2010
I have created a GUI for controlling a device in VB.The VB GUI has a bunch of intelligence behind each button push to determine exactly what command need to be executed. he commands are then written to a perl file (the communication to theoard is in a perl package), and the script is executed. This works consistently for us, but has severe performance issues.he issue I have is that the underlying perl package can take up to 30 seconds to read into the perl interpreter.
View 1 Replies
Mar 25, 2011
does anyone know a good tool - convert perl script to vb.net?
View 1 Replies
Jul 24, 2010
In perl you can write $string =~ tr/[a,e,i,o,u,y]/[A,E,I,O,U,Y]/; for example. Is it possible to achieve the same "translation" effects with VB.Net regexes? PS: I'm not searching for a way to port this very example, it's more of a curiosity question :)
View 2 Replies
Oct 5, 2011
I'm using Visual Studio 08 and Vb.Net (3.5). I want to call a perl script. This perl script should get two values (that the user wrote into input-elements in the vb.net application). Then the perl script should return one or more strings (maybe a list or an array?). How can I do this?
View 1 Replies
Feb 1, 2009
Call a perl script from vb.net with parameters
View 2 Replies
May 26, 2010
I have a perl script i made to automatically telnet into different servers . but its interface is only command line. To make it more user friendly for general windows users , i need to make GUI for it . My idea is to make GUI in a language like VB,java ,etc and let that call perl script . my script will run in background in a command prompt and whatever the result it displays back in GUI.
Got some success. GUI in vb ,I run an instance of CMD in background ,run perl script in that .But that is wer program fails .As perl script runs in a thread for perl , i only get the output when script completes(rather say when it timeout). i need a mechanism where i can interact with the perl script , take output of script and show to user , then take input from user and so on .
View 2 Replies
Oct 6, 2011
I am not familiar at all with perl but I am trying to convert some code over to vb.net (2010).
The bit I am stuck with is the following:
CODE:
A bit of code that uses the above data is:
CODE:
From my understanding they are something like structures or arrays in VB, would this be right?
If I am reading the code right than this:
CODE:
should equal to a two bye array of: "0x10, 0x01" - am I far off?
Would something like what I have below work? It seems a bit messy, there must be a better way to do it:
CODE:
View 1 Replies
Feb 25, 2012
I have a long string containing a bibliography, alternating between lines of paper-title/comma-separated-author-list, like the following:
Learning Programs: A Bayesian Approach
-P. Liang, M. Jordan, D. Klein
-Variational methods for a Dirichelet process
-D. Blei, M. Jordan
What I want is a list of unique authors (alphabetized by last name) and counts. In the above example it would be:
D. Blei (1)
M. Jordan (2)
D. Klein (1)
P. Liang (1)
View 2 Replies
Dec 15, 2011
i want to create an exe in vb.net by packaging few perl files along with it. when i am packaging those files i am able to hide those files by making the hide option true. but if the 'show hidden files' is selected those files will be visible. I want to lock/prevent the user from opening the perl file/code. want to know if there is any way to do it.
View 1 Replies
Jun 13, 2009
I'm trying to make a vb.net application that has got 2 textboxes, 7 radio buttons and 2 buttons(one named compile and the other 'run'). How can I load the content of a C/C++(or any programming language) file into the 1st textbox and on clicking the compile button, i should be able to show the errors or the C/C++ program in the 2nd textbox. On clicking Run, I should be able to show the output in the 2nd textbox. In short, I want to use the 2nd textbox as a terminal/console. The radio buttons are 4 selecting the language C or C++ or python or C# or java or perl or vb.R d compilers of all these languages present in .net?
View 2 Replies
Jun 21, 2010
I want to write an application that can detect whether a value in CSS file has changed or not
View 3 Replies
Apr 29, 2010
Why there's no built-in function to detect platform, I need to know I am running on x64 or x86?[code]...
View 4 Replies
Jun 3, 2011
My table gets its information from a Mysql database online. I'm not sure which would be quicker to retrieve the row that contains the information specified.[code]...
View 5 Replies
Dec 7, 2011
I have a dataGridView control with a DataGridViewComboBoxColumn column, the question is Which event of the dataGridView I must use to detect when the user change the selected value of a particular DataGridViewComboBoxColumn?
View 1 Replies
Jan 30, 2010
How to detect whether Caps Lock/Num Lock is on/off on a keyboard?
View 2 Replies
Apr 26, 2010
I have a text file, about 30mb's in size which gets modified regularly (lines are appended - logfile), but what I would like to do is only read the contents that have been added since the file was last modified.
View 4 Replies
Feb 24, 2010
How can I detect when the WMP has reached the end of the current song? I'm making a media player, and have my songs in a list box. Here is my code for playing a song.
CurrentSong = SongPaths.SelectedItem
WMP.URL = CurrentSong
Label2.Text = "Now Playing: " & Songs.SelectedItem
Songs and SongPaths are both listboxes (SongPaths is hidden) As you might have guess, Songs has the song names in it, and SongPaths has their directory path, the two listboxes are in-sync (Choosing "SongA" in Songs, will select the directory of it in SongPaths)What I need to do, is detect when a song is over, so I can call this code:
i = i + 1
Songs.SelectedIndex = i
'Will select the corresponding item in SongPaths as well.
[code]....
View 5 Replies
Aug 31, 2009
How can i detect how much memory each tab is using
View 4 Replies
Mar 30, 2011
With active i meant for example you are using browser now, so its active when you skip to another window, its not active anymore
View 1 Replies
Feb 3, 2012
If I have a path, eg "C:emp", how can I detect if it is a directory or not?
View 3 Replies
Mar 30, 2012
I need to find an easy way to know if the local machine's 'automatically adjust clock for Daylight Saving Time' option is enabled.
View 3 Replies
May 31, 2009
I guess no need for further description... here's my other post for app that i'm makeing
View 1 Replies
Nov 16, 2008
iam need 1 program detect sound on computer if have sound it will alert " currently have sound"if not" currently no sound"
View 2 Replies
Mar 4, 2009
so basically most major browsers detect if a site is using ssl if their url is "https" as oppossed to "http" is there a way to detect this and if its using ssl make the url textbox background color be yellow?
View 2 Replies
May 6, 2010
I had tried to use vb.net2008 to detect a USB mapped to a com port, I basically followed[code]...
View 5 Replies
Jan 5, 2009
How can I detect if my current OS which my program is running under, is Windows Vista?note that there are 2 versions of Vista:Vista and Vista SP1.The build number of Vista SP1 is the same as Windows Server 2008 and that makes the problem!I just want to make sure my OS is vista?
View 2 Replies
May 20, 2011
All i wish to do is have some simple code, which can detect when the esc key is pressed, (if possible can you point out where i need to change to set it for an other key).
View 5 Replies
Feb 8, 2010
I want to create a windows app which can display a message box whenever i open or close the internet explorer window. As the internet explorer window is opened a messagebox showing that "internet window is now opened" and when it is closed a msgbox showing "ie window is closed".
Kindly help this newbie in writing the code for the same that how can my app made in vb.net detects that ie is opened.
View 4 Replies