VS 2010 Capturing StandardError And StandardOutput In The Same Time

May 31, 2011

I wrote a gui for a console app, wanted to captaure console app standarderror and standardoutput in the same time. I write a code, but it's not executed in the same time. I searched msdn and found that using DataReceivedEventHandler can be asynchronously collect the redirected StandardOutput or StandardError stream output of a proces. But I dont know how to apply it to my code. please help me. i wanted to collect standardoutput and standarderror and append it to a textbox. here is my code,As far as I understand, I have to read one stream synchronously and one asynchronously to avoid deadlock situations.But now it's not output in the same time. having delay issue for standarderror.

Dim start As New ProcessStartInfo("C:WindowsSystem32java.exe")
start.Arguments = "-jar" + " " + "args"
start.CreateNoWindow = True

[Code]....

View 3 Replies


ADVERTISEMENT

VS 2010 Process.StandardOutput Not Matching?

Dec 26, 2011

I'm running a program and reading the command line output, and, when I compare the output I get with the actual output of the program, I'm quite shocked to see that it doesn't actually match up and, sometimes, the text won't even display at all until after the entire process is done [despite using the Asynchronous methods].I'm not sure if I'm doing anything wrong here...I can post the code [it's a rough translation from VB.net to C#, which I can easily translate back], but is there anything I can actually do to fix this issue

View 5 Replies

Capturing A Timers Time?

Feb 8, 2010

The below is my program so far

Public Class Form1
Private Display As Boolean
Private WithEvents tmr As Windows.Forms.Timer

[code]....

Upon clicking the button a series of letters are displayed to the screen.I would like to be able to capture the time taken to press the letter shown.

View 8 Replies

Updating Label.text With StandardError.readline In A New Thread?

Jan 14, 2011

Private Sub runExe()
Dim myProcess As New Process()
Dim myProcessStartInfo As New ProcessStartInfo("mkclean", " --optimize """ & txtSrcFile.Text & """ """ & txtSaveFile.Text & """")

[Code]....

View 4 Replies

VS 2010 Capturing Rtmp Stream?

Jan 28, 2012

I am trying to capture a stream from a website into my vb.net application. I was able to do it before, but the site is now updated and I cannot play the file again!!!ere is the link:I tried using several methods. looked at the source, flash capture programs, even fiddler to check the requests, but it didn't work at all

View 1 Replies

VS 2010 - Capturing Part Of Screen (Bitmap)

May 20, 2012

I'm looking to make a program that would capture your whole screen, then have the picture display on the screen (simulating a frozen screen) to where the person handling the program could select a partial segment of the screen with their mouse and then save to a folder.
1. I have no idea how to go by doing this
2. My form is constantly minimized, so I have to do it without MouseDown on the form and whatnot.
How would I go by doing this?

View 2 Replies

VS 2010 Capturing A Window By Handle With Aero?

Feb 25, 2012

I have been working on an image capturing tool for a long time now & I was wondering how some of those programs are able to make an aero capture of a form.I know you can capture a window if you have it's handle by using the BitBlt, but that doesn't keep the transparancy of the aero form.Let me give you an example:I did a lot of research on google but I never found anything close to something that explains how to do it.

View 4 Replies

VS 2010 Capturing Keydown And Releasing Programatically?

Oct 31, 2010

I need to capture when a user keydowns the ALT key and then by code, releasing the key.

I have sent keys before with the help of keybd_event but I need to know if there is another (easier) way of releasing a key by code...

View 4 Replies

Unable To Get Anything From Process.StandardOutput?

Feb 15, 2009

I run a process (ffmpeg) in a backgroundworker and need it's output to calcute remaining time, estimated filesize etc. but I don't get any output from it. Here's the code used in the DoWork sub

Dim p As New Process
pback.WorkerReportsProgress = True
pback.WorkerSupportsCancellation = True
Dim tmpopts As MyOpts = DirectCast(e.Argument, MyOpts)

[code].....

The process runs and creates the file I'm expecting. I just don't get any output from it while doing it's work. The debug MsgBox shows one time and contains nothing but if I run ffmpeg without redirection in a shell it's outputting a new line every second.

View 4 Replies

Read Bytes From Console App Standardoutput

Nov 19, 2009

I have seen countless examples of reading standard output from command line applications which print text to the screen and one can read that back into the application as a string. I want to read the binary data back that is written to standard output from something such as image magick's convert program. What is coming back is an image, not a text result or error code. Is this possible? I have been looking for ages but found nothing that makes sense.

View 2 Replies

.NET Console StandardOutput Does Not Return Input "question"

Jun 28, 2011

I am trying to completely intercept a console application, that is, grabbing it's output, and inserting the input. So far, I can pretty much grab the output, and input is completely perfect. However, it will not show the "prefix"/"question" of the console's output, until you send some input. As an example, when hooking to the CMD.exe console. When you regularly start it up in Windows, you get something like this:

[Code]...

View 1 Replies

VS 2010 Comparing Current Time To Stored Time?

Mar 27, 2011

I'm writing a report scheduler that is somewhat of a clone to the backupexec scheduler and the layout can be seen in post #10 here: [URL]..It works great and saves/edits/deletes records just fine, but now i need to compare those records one at a time in a windows service that i'm writing in order to trigger automated report creation and emailing - i already have the report and i already have the code for the emailing, i'm just looking for the most efficient way to loop through the table (that i've pulled in to a dataset) and compare its records with the current date and time - if true, the event fires.

[Code]...

1stSun, 2ndSun etc are bit fields, time is a datetime, and the remainder are varchar. My service checks the database every thirty seconds.The english version of what i'm trying to do is "Connect to the database, grab the entire table (it will always only have 5-6 entries max, so i felt 30 second sweeps was okay), and If today is the 1st Sunday of the month, and it is currently 11:00:00 a.m. (could be any day or time, this is just an example) - loop through the dataset to identify if any records match the time field or greater - if they do, fire the report

View 2 Replies

VS 2010 - Applications Made Using VB 2010 Express Expire After Some Time?

Nov 3, 2011

Here are my questions concerning VB 2010 Express:

1. I've registered my VB 2010 Express, will it still expire?

2. Will the applications I made using VB 2010 Express expire after some time?

3. Is it OK to write my code in the designer.vb file? I don't know why, but when I started writing my application it took me to the designer.vb instead of form1.vb code.

4. I've been working on an application for a week now, but suddenly I can no longer access my Design View(Shift-F7). All my codes are written on the [form name].Designer.vb. I can still view my codes but I cant access my form layout. On the solution explorer, my forms no longer have the 'form icon'. When i press Shift-F7 nothing happens. Right-clicking the form on the solution explorer doesn't show 'View Designer' option. How can I fix this?

View 5 Replies

Capturing .jpg Using A WebCam?

Jun 4, 2011

I want to capture a still picture in any format like .png,.jpg,.bmp etc. using a webcam.And want to save that in directory.

View 3 Replies

Capturing Text From Cmd.exe?

Mar 14, 2010

How can I capture text from cmd.exe window? Tried GetWindowText, but this only returns the title.

View 6 Replies

.net - C# DataGridView Capturing Deleted Row?

Jun 16, 2010

I am using a DataGridView, which is bound to a dataset. There is a bindingNavigator as well.

when a user deletes a row by clicking "bindingNavigatorDeleteItem" button, I am trying to get the row being deleted.

private void bindingNavigatorDeleteItem_Click(object sender, EventArgs e)
{
int crow = gridEventType.CurrentCell.RowIndex;

but it returns the newly selected row AFTER deletion of a selected row.
so, If I have two rows

0
1
2
and I delete 2

crow is 1, not 2.

Am I missing something here?

2. How do I know whether certain rows are modified in datagridview?

View 3 Replies

.net - Capturing Error Events?

Feb 9, 2012

I was creating some complex applications in Visual Basic .NET 2008 and since they are in the testing phase right now, people manage to find an error or two every so often that causes the program to crash. The problem is that there is a tracking piece to it that logs who is currently using the programs. When a user logs in, it logs that they are currently logged in, and if the form close event is fired, the log is deleted to show that they have closed it.

Now my problem comes whenever the form crashes from an error since it won't trigger the close event and therefore makes the log become inaccurate. My question is if it is possible to capture any error that the form would have in the form of an event?

View 2 Replies

Capturing A Section Of The Screen?

Oct 19, 2006

I am trying to make a simple personal program and cannot figure out how to capture a section of the screen.I want it to work like prt scr does except it captures a specified rectangle instead of the entire screen. I am thinking I have to use Drawing.Graphics but am not sure.

View 11 Replies

Capturing And Using Keypress Events

Apr 30, 2010

I am trying to modifying the "Math Quiz" tutorial to be more user friendly.

The initial tutorial does not consider the users efforts to answer the math problems as quickly as possible.

The problem is that you must use the mouse or tab key rather than the "enter" key to move to the next control after answering. I believe using the "Enter key to be much more intuitive.

Therefore, I wish to modify the program to either:

1. Check the KeyPress event of the NumberUpDown controls to watch for the "Enter" key to be pressed, and if it is, check to ensure that the current NumberUpDown control is not empty (= Nothing) and if both are True, to then TAB to the next control in the TAB order; OR

2. Uses the PreviewKeyDown event to transpose the "Enter" into a "Tab" automatically so the application will then TAB to the next control in the TAB order.

With all of the new changes to VB 2010 from the last version I actually used professionally (VB6), things are REALLY different, so I no longer know how to accomplish this same task in the new manner. especially if it contains working CODE, because I have always learned better the first time from an example. here is my version of the tutorial Code:

'--- Create a Random object to generate random numbers.
Private objRandomValue As New Random
'--- The Integers will store the numbers for the
' addition problem.

[Code]....

View 4 Replies

Capturing Ingame Screenshots?

Dec 7, 2011

Okay, so I know how to capture a screenshot of the Active Window, but if the active window is a game, then the screen is just black. What do I need to do to be able to also capture ingame screens?

View 3 Replies

Capturing Sound Before It Is Played?

Dec 1, 2009

I was wondering if there is an easy way to analyse sound that is sent to the speakers (just before it's played). For example when playing a song in winamp or windows media player. Or is it easier to write plugins for those programs to form an interface with your own program?

View 2 Replies

Capturing Value Of DataGridView CheckBox?

Aug 9, 2010

I have a datagridview (unbound). Fields are Name, Family Name and Phone No and a checkbox colum.

There are ten rows in that DataGridView.

There is an OK button

I need to get message of showing which rows user has checked. The message should appear when user clicks OK button. There could be several message, checking each row one by one, in a loop.

I am not able to get this message. I tried following code in OK button

Dim strCB As String = dgvChooseQs.Rows(0).Cells(3).Value.ToString

Cell(3) is my checkbox. Donot consider Rows(0), at the moment I am just checking value at row 0

View 2 Replies

DataGridView And Capturing The Enter Key?

Jan 16, 2008

I have read and tried a dozen or more examples of trying to capture the Enter key in a datagrid, but I have yet to find something that works. My scenario is :

ds.Tables.Add(dt)
dt.Columns.Add("Inventory Nr", GetType(System.String))
dt.Columns.Add("Cases", GetType(System.Int32)) Inventory Nr in the next row.

[code].....

View 1 Replies

DirectSound Capturing Microphone In VB

Dec 18, 2010

I'm currently trying to Capture through DirectSound, I've been trying toying around with WaveLib(Ported to VB) but this is very confusing. Anyway, I cant figure out how I am supposed to do this and would like some assistance. The end goal of this project is to: Record Microphone > Encode with Speex Codec > Send over UDP > Decode > Play on Speakers

View 3 Replies

How To Screen Capturing In-game

Nov 18, 2011

i use with this code: Dim bounds As Rectangle

Dim screenshot As System.Drawing.Bitmap Dim graph As Graphics bounds = Screen.PrimaryScreen.Bounds

screenshot = New System.Drawing.Bitmap(bounds.Width, bounds.Height, System.Drawing.Imaging.PixelFormat.Format32bppArgb)

graph = Graphics.FromImage(screenshot)
graph.CopyFromScreen(bounds.X, bounds.Y, 0, 0, bounds.Size, CopyPixelOperation.SourceCopy)
PictureBox1.Image = screenshot

But when I try it in games,it shows only a black picture.

View 4 Replies

Still Image Capturing Using A WEBCAM

May 28, 2007

I would really like to get some VB.net program code for still image capturing using a Webcam.I've searched the web for quite a while now but did not get any codes. Currently i have a code for capturing video. In that code an image can be captured, but only with 640 X 480 resolution (Maximum Video resolution for my web camera). The WM_CAP_DLG_VIDEOFORMAT dialog box only allows the resolution to be set up to 640 X 480.

[Code]...

View 6 Replies

Add The Mouse When Capturing The Screen Or Monitor?

Jul 18, 2012

I'm just wondering if it's possible to add the mouse when capturing the screen or monitor in vb.net?

because I'm doing a project that would record the screen and I'm actually successfull doing that by capturing the screen and include it in a timer, but my only problem is the mouse or the cursor isn't showing.

below is my sample code.
Dim ScreenSize As Size = New Size(TotalScreenWitdh, MonitorHeightArray(0))
Dim BMP As New Bitmap(TotalScreenWitdh, MonitorHeightArray(0))

[Code].....

View 5 Replies

Avicap32.dll For Capturing Pictures From Webcam

Aug 26, 2008

We are using avicap32.dll for capturing Pictures from Webcam,and we want to display the list of connected Webcam names but we are only able to get the driver name for webcam by using capGetDriverDescriptionA method. Is there any method to get the name of the webcam like "asus W120"

View 5 Replies

Capturing (and Canceling) A Minimize Event In .NET?

Nov 21, 2010

I'd like to start by saying that simply though searching, DreamInCode has taught me alot about VB.NET. In fact, I would imagine without DIC as a resource, I probably wouldn't have been able to move forward and learn most of what I know now, just because I got stuck on some things here and there.Anyway, I searched around for information regarding how to "capture" a minimize event in VB.NET. I am working on the GUI for an application that I would like to have minimize to the system tray. Currently, instead of accomplishing this with the minimize function, I do it on the FormClosing event like this:

Private Sub MainFrm_FormClosing(ByVal sender As System.Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles MyBase.FormClosing
'Cancel the attempt.

[code]....

That code works, and upon making the form visible again with Me.Visible = True the form is restored to its original position. However, prior to the form being hidden, the window manager draws a minimize and restore effect before eventually hiding it. Any change to the WindowState _after_ hiding the form does not appear to have any effect, so when the form is unhidden it is still minimized.is there a way to capture Minimize events, and when captured, is it possible to cancel them in a manner similar to what I did with the FormClosing event?

View 2 Replies

Capturing A Character And Storing The Filename?

Aug 3, 2011

I'm stuck here in a code that requires me to capture the printer name and storing the file name as well.

The code is hown as below:-

Dim dir_info As New DirectoryInfo(strDirectory) 'the directory is D:jeremyPrint ServicePrint ServicePL"
dInfo = New DirectoryInfo(strDirectory)

[Code]....

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved