Jump to content

soloprt

Members
  • Posts

    3
  • Joined

  • Last visited

soloprt's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. the program and source code dont exist anymore does any of you guys have a copy
  2. cool , how can i integrat it inside an application am developing to help ime in my word?
  3. hi am new and i just started learning autoit am starting to do a little program that can help me in my work i dont know how to do it correctly : a combobox that shows what com port are connected to devices in the computer and when i choose a port and click on a button called info_port i want that he desplay in $result the name of the device connected to the choosen com port. i want to use this file to help me : CommMG.au3 thanks #include 'CommMG.au3' ;comm ports library Global $result = GUICtrlCreateEdit("", 364, 135, 568, 595) Global $info_port = GUICtrlCreateButton("Info", 291, 85, 56, 25) Global $Port = GUICtrlCreateCombo("", 150, 85, 135, 24) $portlist = _CommListPorts(0) If Not @error = 1 Then For $pl = 1 To $portlist[0] GUICtrlSetData($Port, $portlist[$pl]) Next EndIf While 1 $nMsg = GUIGetMsg() Switch $nMsg CommMG.au3
×
×
  • Create New...