I have an array containing letters and numbers that im trying to sort.
using the array sort method i'm not geting the results im after
Example
A1
A2
A3
A4
A5
A6
A7
A8
A9
A10
A11
A20
Is being sorted.
A1
A10
A11
A2
A20
A3
A4
A5
A6
A7
A8
A9
Hi
I want to be able to draw some lines (Any angle) then perform an operation based on which one i've click.
I can draw the lines using GDI but how would i know if ive clicked on one?
Phill
No it doesn't.
I might have to get the company to change the way it works.
At the moment i write the .cgf file from my application then need to run the test.exe and some how associate the two files. (Like the open with in folders)
I'll see if the can get them to use a standard name for the .cgf and do it at there end so i only have to run the test.exe and nothing else.
Thanks for the reply but i think you misunderstood me.
I need to open the config.cgf file using the test.exe
the config.cgf file tells the test.exe what to do.
Hi
I Have a separate .exe file that I need to run with an configuration file from vb.net.
I can run it fine manually by Opening the .CFG file with the Application. (using the "openwith" then selecting the app)
How can I do this from code?
I tried this but it didn�t work
Dim pProcess As New Process
Dim pProcessInfo As New ProcessStartInfo
pProcessInfo.FileName = "D:\Tools\test.exe"
pProcessInfo.Arguments = "D:\Tools\config.CGF"
pProcessInfo.UseShellExecute = True
pProcess.StartInfo = pProcessInfo
pProcess.Start()
I got the add event handler woking but it did not help
The problem seems to be the other application.
It seems to crash when firing the second event when it has not recived the first one back (excuse my terminoligy lol)
I need to end the routine and then do the oject move.
I tried setting up a timer to run after the routine finishes that then moves the oject but the timer does not seem to work from my event (timer1.enabled=true)
Can anyone think of a way round this?