:: Think Code Execute ::

Think Code Excute

:: Install MS Bluetooth Stack ::

my problem was to install to microsofot bluetooth stack inseted of any other

bluetooth stack

the solution is simple :D

just donload the file here click here

rename the file bth.jpg  to bth.inf 

 

now go to devic manager and to you bluetooth driver

and find theVid_044e&Pid_3005

then open the  bth.inf

and go under the ——- Device section – Start —–

and add this

device name=                BthUsb, USB\Vid_044e&Pid_3005 

change th vid, pid value to your device values

save the file

go to the driver and update your drive 

and chose to locate file driver bth.inf

and thats it:)

January 26, 2009 Posted by eshbeata | :: Windows :: | , , | No Comments Yet

:: How To Run CMD Dos Command in C#.net ::

Its easy you only need to use process :)

System.Diagnostics.Process.Start(“CMD.exe”,”cd ..”);

this how we do it :)

if you need to terminate the dos after excution the dos command you just need to put /C

System.Diagnostics.Process.Start(“CMD.exe”,”/C dir”);

you also can yous multiple dos command at the same time like
System.Diagnostics.Process.Start(“CMD.exe”,@”/C cd\ & myapp.exe “);

have a nice day :)

January 15, 2009 Posted by eshbeata | :: C#.net :: | , , , | No Comments Yet