how to wifi, wirless programming?
-
how can i connect/disconnect my wifi with delphi programming? how can i connect/disconnect other wirless networks with delphi programming? help me, please
If you are implementing it on Windows: take a look at WlanConnect[^] and WlanDisconnect[^]. Go through this page http://msdn.microsoft.com/en-us/library/windows/desktop/aa816369(v=vs.85).aspx[^] for brief usage of Native Wifi API. I don't think Delphi provides units for these APIs, so you have to download it somewhere else. you can also call netsh command line to perform the connection. It's less flexible but easier to use this command line method than Native Wifi API, but you can decide which one is better based on your project.
-
how can i connect/disconnect my wifi with delphi programming? how can i connect/disconnect other wirless networks with delphi programming? help me, please
-
If you are implementing it on Windows: take a look at WlanConnect[^] and WlanDisconnect[^]. Go through this page http://msdn.microsoft.com/en-us/library/windows/desktop/aa816369(v=vs.85).aspx[^] for brief usage of Native Wifi API. I don't think Delphi provides units for these APIs, so you have to download it somewhere else. you can also call netsh command line to perform the connection. It's less flexible but easier to use this command line method than Native Wifi API, but you can decide which one is better based on your project.
-
-