Try ComboBox1.Updat e()
I dont know If it works.
User Profile
Collapse
-
James already gave the right asnwer but he was a little confused:
Static LOF As DateTime = "15:27:06"
Static RT As DateTime = "1:05:27"
MsgBox(LOF.Subt ract(RT).ToStri ng)
you can also replase the times with:
Static LOF As DateTime = textbox1.text
Static RT As DateTime = textbox2.text
MsgBox(LOF.Subt ract(RT).ToStri ng)Leave a comment:
-
A best answer is given already. But if you want to get the cursor on (100, 100) on the screen, and next time you want it somewhere else.. You dont really need to add the form's location value. Do it like this. Use 2 textboxes(or nothing.) to write the position you want to get on the form.
dim ax as integer = val(100) + val(me.location .x)
dim ay as integer = val(100) + val(me.location .y)
setcursorpos(ax , az)
...Leave a comment:
-
How to get full path of running process.
Im working on a Dll Injector. But that is not my problem. I am using a picturebox to display the icon of a running process.
E.g. If google chrome is running. The picturebox should display the icon of google chrome.
I can extract the icon to my picturebox only if I know the full path of the process. That API was easily found and works very well.
But know I want my application to get the full path of a running process...
No activity results to display
Show More
Leave a comment: