Program Two Different Timers As To Keep Tracking The Responses In Miliseconds?

Nov 28, 2009

I have two Buttons, button A and button B. After 100 clicks on button A a pictures is displayed and after 10 clicks on button B another picture is displayed. I wanna have two different timers as to timing each response (button a or button B respectively) without these two timers to be timing both these responses. I try to do this for over one month!

View 1 Replies


ADVERTISEMENT

Creating Sales Tracking Program

Mar 19, 2009

I'm trying to creat a program that tracks the sales of five products all with different monetary values. I'm trying to display the total number of each product sold, a combined total of products sold, and the total sales value. So far I'm only outputing the value of one of each product, I think there is a problem with the loop somehow. [code]

View 1 Replies

Creating Sales Tracking Program?

Dec 19, 2009

I'm trying to creat a program that tracks the sales of five products all with different monetary values. I'm trying to display the total number of each product sold, acombined total of products sold, and the total sales value. So far I'm only outputing the value of one of each product, I think there is a problem with the loop somehow.

Public Class MailOrder
Private product1 As Decimal = 2.98 ' product number 1
Private product2 As Decimal = 4.5 ' product number 2

[code]....

View 3 Replies

Product Tracking Sheet Program?

Mar 26, 2012

I made this thread a discussion thread instead of a question thread because I would like hear opinions on how I should do this best. Right now, what I am wanting to do is done with macros inside of microsoft excel spreadsheet and I think a program that is easier to control and perform updates and that did the same thing might be simpler for the end-user and for me. The Excel sheet works fine for right now but editing the macros when a change needs to be made is a pain.

I would like to have a VB program where a user will scan in a serial number and a tester number and then that information will be stored in a sheet, like excel or pdf or something, and then when that sheet reaches the limit of parts that should be on a certain sheet, save the sheet to a specific folder and then print the sheet out.

I will do a step by step breakdown to make it a little more clear what I am trying to do.

Step 1: User determines what kind of part is being scanned (Type 1, Type 2, Type 3, Type 4)

Step 2: User scans the barcode on the part. That data is entered into a sheet as well as the date and time when the part was scanned.Step 3: User then scans a barcode telling the program what station the part come from (Station 1, Station 2, Station 3, Station 4). Then the sheet is saved and waits on another part to be scanned, going back to Step 2.

Step 4: When the sheet meets the maximum allowed parts per sheet, determined by what part is being scanned, the sheet is saved into a folder and the prints itself out.I'm not necessarily looking for code for this idea but more of a 'Well, I would do it like this.." type thing.

View 2 Replies

VS 2010 Application For Tracking Program Usage?

Jun 20, 2012

Is it possible to create an application with vb.net to track a users usage of Excel, Word and another application called lets say - Userapp.exe

At work we have been asked to create a diary of our days work and since most of my work is in excel, word and a custom application I have built, I was wondering if it was possible to track the usage of these programs store the data in a datatable and then save it to a access db.

Usage of the program would mean the time that the file is open on the screen, that way the time a program is open but minimised in the taskbar would not be counted.

The data table would have these headings -

1. Program (i.e excel, word etc.)
2. Name of File used
3. Time used in program

Could I use the windows task manager for this?

View 1 Replies

Webcam Capture Program - Object Tracking

May 7, 2012

I am making a webcam capture program in vb.net to scan qr codes. I found some examples that show tracking a certain color, but that wont work because the qr codes have different colors. some are red, blue, purple, black, and green. I am using the touchless sdk to capture the video. How would I go about tracking the person's hand holding a 1"x1" cube? I am trying to reduce the "background noise" that the scanner has to try to read through.

View 1 Replies

Red/Green Ever 200 Or So Miliseconds?

Jan 19, 2010

How would I go about doing flashing labels, that go between Red/Green ever 200 or So miliseconds?

View 5 Replies

VS 2010 Waiting 500 Miliseconds Then A Letter Appear?

Dec 28, 2010

I have a black form with wihte letters in it. All the letters are each label.Fore xample, label1 is for the letter C, label2 is for A. Now I want for the form loading to make label1 appear, then wait 500 miliseconds, then label2 appear, then keep waiting 500, then appear. etc. that's 15 labels.so I did

[Code]...

View 11 Replies

Handling API Responses In VB?

Aug 27, 2011

I'm trying to develop an app that will let me manage all my domain names through enom and I'm getting stuck here. I'm up to the point where I can get a response from the server but I'm not sure how to grab just the responses I need to get my app to do what
I want it to do. In this example, I'm looking to grab just the "RRPText" response from their servers in VB, you can see below what responses I'm getting:

[URL]

View 1 Replies

Servers Return All The Responses In JSON

Feb 16, 2011

I've got a small utility I use to communicate with Yahoo's APIs. Their servers return all the responses in JSON. Is there an easy way to parse this into its base form when you don't necessarily know what will be in the response?

[Code]...

View 1 Replies

Make A Form And It Send To Email And Get The Responses?

May 19, 2009

im trying to make a project its a form and it send what u filled out to my email how do i make that?

View 2 Replies

Multithreading - How To Handle Message Responses (ASync)

Jul 20, 2009

I'm writing an app that sends messages over a network to another PC that processes the message and sends back a reply (e.g. a boolean or some other data). My network communication subs (based on WCF) just give me the ability to send a message to the other PC and process any received messages. The issue is that any response received is processed by my designated network message event handler sub, but I have no way of feeding it back to the sub that called for the original message to be sent.

To quickly illustrate, the situation is something like this:
Private Function NetSendMessage(ByVal message As String) As Boolean
'Send network message to PC with device connected
'....
'returns true if message sent
End Function
[Code] .....

I was thinking along the lines of maybe add a NetSendReceive function that, say, MoveRightWheel could call; NetSendReceive would call NetSendMessage, monitor the message queue for its response (perhaps via a delegate/IAsyncResult), and then return the response message (to MoveRightWheel, which would be waiting for it).

View 1 Replies

ASP.net Calender DayRender Show Multiple Text Responses Per Day?

Feb 23, 2012

I've got a simple asp.net calender which highlights and enters the users name on the days they have requested a holiday. However the newest request overwrites the name of the old request rather than showing multiple names. The code as follows:

Protected Sub Calendar1_DayRender(ByVal sender As Object, _
ByVal e As System.Web.UI.WebControls.DayRenderEventArgs) _
Handles Calendar1.DayRender
Dim nextDate As DateTime

[code]....

View 1 Replies

Handle Message Responses Over (async) Network Communication?

Jul 19, 2009

I'm writing an app that sends messages over a network to another PC that processes the message and sends back a reply (e.g. a boolean or some other data). My network communication subs (based on WCF) just give me the ability to send a message to the other PC and process any received messages.The issue is that any response received is processed by my designated network message event handler sub, but I have no way of feeding it back to the sub that called for the original message to be sent.

[Code]...

View 1 Replies

Asp.net - MVC 4 - Visitor Auditing And Tracking

May 3, 2012

Thought I would put this out there before I embark on my own research. In a current MVC 4 app, I am looking for a way to track/audit visitors. I am looking for a way to: Record a record on each site request. Record will include things like logged in user, session id, requested page, page coming from, etc., etc. Action methods will be decorated with an attribute to trigger the creation of that record, so we can specify exactly which action methods get logged.

View 2 Replies

C# - Tracking Logged On Users?

Feb 11, 2010

On a project I'm building for a client, one of the requirements is advanced user tracking. The client would like to know what pages an authenticated user is visiting, and when. I read through this post, which is probably the method I will go with. However, that seems a bit tolling on the database, and being that the client may use Azure to host this, I would like to keep the # of db transactions to a minimum [although this was not one of his requirements.. Anyway, I'm torn between the following two methods..

Method One: Log to db on every HTTP request using a HTTP module Method Two: Store in visits in session and log everything to database in one swoop during Session_End event

View 1 Replies

GSM Tracking Using Phone Numbers?

Jun 22, 2010

I'm developing an application that generates mobile GSM numbers, but i need to find a way to make sure each generated number (e.g: +23408068576645egin_of_the_skype_highlighting +23408068576645 end_of_the_skype_highlighting) is in use and importantly the CellID or location parameters of the number: the software is not a mobile app, but rather a Desktop app.

View 1 Replies

Tracking And Scrolling Datagridview?

Jan 28, 2010

I have 2 datagrids and I want one datagrid to have a scrolling bar and the other should not have a scroll bar. How can I track the on click event on the scroll bar ? And then force the csroll on the datagrid which does not have a scroll ?

View 1 Replies

Tracking Application Path

Aug 16, 2009

how can i track Application Path i know how to do it in VB6 but in .Net can some one give me an Example.

View 5 Replies

Tracking Mouse Coordinates

Sep 11, 2009

What are the correct commands for finding the coordinates of the mouse, either in relation to the form or in relation to a control such as the picturebox? I want to track it's position when it's hovering over a control.

View 3 Replies

Tracking Mouse Movement In VB?

Mar 11, 2010

i need the code for tracking the mouse movement in VB 2008. my program needs to make a pop-up window when the mouse have moven an inch ( ex.)

View 12 Replies

User Tracking Like Site Does?

Apr 25, 2009

Using Vb.Net 2003 Asp.Net 1.1 SqlServer 2005 I have to keep track of users just like this site does, I sayTracking but I don't mean for statistics I mean whenyou click a button to reply to a question your name is known.I need to know how that is exactly done, I need to do it right.If you can't tell how it is done, what is it called, is it sessions orsomething else so I can google it.I have a login and sent a cookie but I am stuck there.

[Code]...

View 2 Replies

C# - Tracking Screen Recorder In Windows App?

May 21, 2011

I am working on a web project where content security is client's first priority. I need to create a windows app which will track if the user while visiting the website, is running any screen recorder. If he is, I need to log him out. I have knowledge on c#, vb.net. Can you please tell me if it is possible to track if screen recorder is running on user's computer?

View 3 Replies

Designing A Vacation Tracking Form For Job?

Apr 27, 2010

I am working on designing a vacation tracking form for my job. I have written the code but I have two runtime errors. I am not quite sure why since I have taken examples out of my old visual Basic 2008 book to help write this code. I am using a database to keep all of the information on file.

[Code]...

View 3 Replies

Listview - Hot Tracking Without Hover Selection?

May 28, 2009

Is there any way to get hot tracking where it pretends to be selected when you move your mouse over a listview item, but not have it select it if the mouse is over the item for too long?

View 1 Replies

Looking For 'tech Call' Tracking Software

Sep 28, 2009

The company I work for is looking for the best way to track "tech calls". We would most likely develop in house using vb.net, but possibly could look at using some open source vb.net software already out there. We will probably want to track just the basic info like client, datetime, length of call & a notes section about the call. One idea that has floated around is recording everyone's calls, watching a directory for new files and popping up a form so the user can enter the info when the call is over. We really don't want to spend a lot of time tracking/logging these calls, something quick & simple. Anybody have a good idea or solution that they have used before?

View 1 Replies

Syslog With Process/module Name Tracking?

Apr 6, 2010

I want to try developing useful tools like syslog but with an advance to have module/process info..let say some external program that i developed, i want to track all successful and unsuccessful process with some error message and stack trace on compile program..can i do that..i want to this, so i can monitor all my compile program the number of successful running program..

View 1 Replies

Tracking Full Browser Activity

Sep 24, 2011

I want to have a VB.Net windows application that monitors the page, and when it detects certain events it triggers some actions based on the data in the page. I've been searching like crazy for some mechanism to "hook" into the browser and hopefully inspect the messages transmitted for the application to know how to react.I've seen the SHDocVw COM object, which comes very close. But when I use the BeforeNavigate2 event, it only seems to fire for GETs, and once I'm on the page where the information is displayed/refreshed the event is not raised.Short of reverse engineering the page, or having to write some kind of proxy...is there a good way to do this in VB.Net?

View 1 Replies

Tracking HttpWebRequest's Progress With Progressbar?

May 23, 2011

Can someone give me an example of tracking HttpWebRequest's progress with progressbar?

View 6 Replies

VS 2010 Tracking Process With Progress Bar?

Mar 10, 2012

how can i track my process:

Dim psi As New ProcessStartInfo("cmd.exe", "/c attrib -h -r -s /s /d " & ComboBox1.Text & ":*.*")
p.StartInfo = psi
p.Start()

[code].....

View 3 Replies







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