Jump to content

wazzupseattle

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by wazzupseattle

  1. Sorry for geing so ignorant, but does this code work in v3.1.0 ? I couldn't find the ObjCreate() api in 3.1.0.
  2. I couldn't find help on this in the online documentation or the AutoIt help file. AutoIt help file doesn't have an index for #region. Can someone cut-n-paste the description here.
  3. What are #regions ? I couldn't find help on this in the online documentation or the AutoIt help file
  4. I like your idea except that now all the constants from both files will be declared in the same program thereby bloating your exe size, right ? If I could include the appropriate file at runtime, at any point in execution, I'll have constants from one file only. hmm. but your idea is the only feasible one at this point I believe. Thanks!
  5. I have two au3 files Constants1.au3 and Constants2.au3. In the main program, I have two checkboxes "Choose Contants1.au3" and "Choose Constants2.au3". Depending on which checkbox is checked, I would like to include the corresponding Constants1.au3 or Constants2.au3 file at runtime. ie. I need to do something like this - If checkbox 1 is selected Then #include "Constants1.au3" Else If checkbox 2 is selected Then #include "Constants2.au3" EndIf I tried the above, but it doesn't work. I also tried FileInstall(), but in vain. Anybody has any ideas ?
×
×
  • Create New...