Jump to content

solistic

Members
  • Posts

    10
  • Joined

  • Last visited

solistic's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. To gseller: Thanks, that's just what I needed to know. To HAL9000: Try removing the back slashes from the quoted strings ...
  2. This is something to do with the version 3.2.12 updates. The example was written using v3.2.8.1. Errors relating to use of GuiCombo.au3 now seem to have proliferated. _GuiCtrlComboAddString() is a UDF included with v3.2.8.1 Perhaps someone else can work out what's wrong?
  3. Here is a demo for dealing with dependent combo boxes CODE ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Demonstrate how to deal with three dependent combo boxes ; where the list data in combo box 2 and 3 is dependent on ; the selection within combo box 1 and 2, respectively #include <GUIConstants.au3> #include <GuiCombo.au3> Dim $location [3] = ["Swansea", "Cardiff", "Bristol"] Dim $list1 [6] = ["Select ...", 1,2,3,4,5] Dim $list2 [6] = ["Select ...", 10,20,30,40,50] Dim $list3 [6] = ["Select ...", 100,200,300,400,500] Dim $list4 [6] = ["Select ...", 1000,2000,3000,4000,5000] Dim $list5 [6] = ["Select ...", 10000,20000,30000,40000,50000] Dim $list6 [6] = ["Select ...", 100000,200000,300000,400000,500000] GUICreate("Triple Combo box demo", 220, 220) ; Create first combo box $c1 = GUICtrlCreateCombo ("Select ...", 10,10) ; create first item GUICtrlSetData($c1,$location[0] & "|" & $location[1] & "|" & $location[2],"Select ...") ; add other items snd set a new default ; Create second and third combo boxes $c2 = GUICtrlCreateCombo ("", 10,35) $c3 = GUICtrlCreateCombo ("", 10,60) GUICtrlSetState($c2, $GUI_DISABLE) GUICtrlSetState($c3, $GUI_DISABLE) ; Create a label to display results $output = GUICtrlCreateLabel("", 10, 85, 200, 20, $SS_SUNKEN ) GUISetState () $h1 = GUICtrlCreateLabel("", 10, 125, 200, 75, $SS_CENTER ) GUICtrlSetData($h1, "Demonstrating how to deal with three dependent combo boxes where the list data in combo box 2 and 3 is dependent on the selection within combo box 1 and 2, respectively") While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case $msg = $c1 $cr = GUICtrlRead($c1) ; read the combo box 1 value GUICtrlSetState($c2, $GUI_ENABLE) GUICtrlSetData($c2, "") ; clear current value from combo box 2 GUICtrlSetData($c3, "") ; clear current value from combo box 3 GUICtrlSetState($c3, $GUI_DISABLE) If $cr = $location[0] Then populate($c2, $list1) ElseIf $cr = $location[1] Then populate($c2, $list2) ElseIf $cr = $location[2] Then populate($c2, $list3) EndIf Case $msg = $c2 and $cr = $location[0] $cr2 = GUICtrlRead($c2) ; read the combo box 2 value GUICtrlSetState($c3, $GUI_ENABLE) GUICtrlSetData($c3, "") ; clear current value from combo box 3 If $cr2 = "1" Then populate($c3, $list1) ElseIf $cr2 = "2" Then populate($c3, $list2) ElseIf $cr2 = "3" Then populate($c3, $list3) ElseIf $cr2 = "4" Then populate($c3, $list4) ElseIf $cr2 = "5" Then populate($c3, $list5) EndIf GUICtrlSetState($c2, $GUI_DISABLE) Case $msg = $c2 and $cr = $location[1] $cr2 = GUICtrlRead($c2) ; read the combo box 2 value GUICtrlSetState($c3, $GUI_ENABLE) GUICtrlSetData($c3, "") ; clear current value from combo box 3 If $cr2 = "10" Then populate($c3, $list2) ElseIf $cr2 = "20" Then populate($c3, $list3) ElseIf $cr2 = "30" Then populate($c3, $list4) ElseIf $cr2 = "40" Then populate($c3, $list5) ElseIf $cr2 = "50" Then populate($c3, $list6) EndIf GUICtrlSetState($c2, $GUI_DISABLE) Case $msg = $c2 and $cr = $location[2] $cr2 = GUICtrlRead($c2) ; read the combo box 2 value GUICtrlSetState($c3, $GUI_ENABLE) GUICtrlSetData($c3, "") ; clear current value from combo box 3 If $cr2 = "100" Then populate($c3, $list3) ElseIf $cr2 = "200" Then populate($c3, $list4) ElseIf $cr2 = "300" Then populate($c3, $list5) ElseIf $cr2 = "400" Then populate($c3, $list6) ElseIf $cr2 = "500" Then populate($c3, $list1) EndIf GUICtrlSetState($c2, $GUI_DISABLE) Case $msg = $c3 $cr3 = GUICtrlRead($c3) GUICtrlSetData($output, $cr3) GUICtrlSetState($c3, $GUI_DISABLE) EndSelect Wend ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Populate a combo box with list data Func populate($ctrl, $l) GUICtrlSetData($ctrl, $l[0], $l[0]) ; put the first item in the list For $a = 1 to UBound($l) - 1 _GUICtrlComboAddString($ctrl,$l[$a]) ; add all other items to the list Next EndFunc
  4. I don't know if it will help, but I recently wrote a small demo of dependent combo boxes: http://www.autoitscript.com/forum/index.php?showtopic=77915
  5. Well, I have just uninstalled 3.2.12 and reinstalled v3.2.8.1 . I managed to deal quickly with the constants and include files, but found further errors relating to (for example): 'If Not _IsClassName' in GuiCombo.au3. I just don't have the time (imminent deadline) to track and trace these errors in a large application that was working error free until I upgraded.
  6. Very useful plugin. I am using the SHA-1 module in my app.
  7. Thanks very much. This is just what I need.
  8. The XOR encryption algorithm is regarded as inherently insecure. Even without knowledge of the key, it is easy and quick to retrieve the plain text of the message using brute force methods. However, it does give an insight into how encryption algorithms work and is useful as an academic exercise. As to how it works? The plain text is encrypted against the key according to some set pattern. Decryption is the exact reverse of encryption, as the XOR value of some character is always going to be the same, given the same key, and vice versa. For example, suppose the XOR of the character 'A', with our key becomes the character 'Z', then XORing 'Z' with the same key will produce 'A'. XOR is a logical operation, meaning eXclusive OR. It is too long ago since I studied logic gates, so I can't give you the logic table, but I am sure someone out there can ...
  9. Thanks. The UDF's do make life a LOT easier.
  10. Hi I am working on an application that uses the IE ActiveX control within a GUI (similar to the example provided with Autoit3) using the GUICtrlCreateObj() function. I have discovered since, that it is possible to embed IE using the _IECreateEmbedded() function (although it seems you still need to use the GUICtrlCreateObj() function). What are the pros and cons of either method? Is one method preferable to the other?, or does it not matter, anyway? Thanks
×
×
  • Create New...