Jump to content

Jat421

Active Members
  • Posts

    52
  • Joined

  • Last visited

Jat421's Achievements

Wayfarer

Wayfarer (2/7)

0

Reputation

  1. Here is the ini file. [test] key1=value1 key2=value2 key3=value3 Also the -1 actually did the trick but I am trying to hold more keys into the array and would like to call them later in the script. How can the expand the array to hold more data I tried $aArray[2][2] but that throws an error? Thanks guys for all the help! $Item2 = GUICtrlCreateMenuItem($aArray[$i][3],$Menu)
  2. Hello, I am trying to change a script to take menu items from an ini file and having some issues $aArray = IniReadSection("test.ini","test") If not @error Then For $i = 1 To $aArray[0][0] MsgBox("Test","", "Key: " & $aArray[$i][0] & @CRLF & "Value: " & $aArray[$i][1]) Next EndIf And I am trying to use the read ini file in the array but getting error Here is where I am trying to use the array in GUI $Item1 = GUICtrlCreateMenuItem($aArray[$i][1],$Menu) $item1 is later used in an while loop to check what is selected from the menu.
  3. Any way to add text header or footer to an existing PDF file. We need to date time stamp a lot of PDF files. Thanks!
  4. Thanks that does the trick! Jdelany, the w3 school link that you posted are all the properties and methods supported that are on the website. I was trying to get the "Find" method working but that no luck. Thanks!
  5. Hi, I am trying to build a asset tracking application with Mysql. I have selected all from the tables but how can I loop through the columns? Func Search() Local $sql = Connect() $string = "select * from assets" $i = _Query($sql, $string) With $i $a = .Fields("asset_no").value MsgBox(0, "test", $a) EndWith Will I have to use multiple with statements and assign them to each variable or is their a easier way to loop through them all?
  6. lol, yes you are right. sorry about that. Thanks for your help!!!. It works perfect now!
  7. Doesn't seem to be work for me. What am I doing wrong $sum = 70 MsgBox(0,"test", $sum) $sum = $sum/10 StringFormat("%.2f", $sum) MsgBox(0,"test", $sum)
  8. Hi, I have a script that will output a number called $sum between 1 and 100 and then I need to divide that number by 10. All is working fine but when a number is (10,20,30,40..) it will give me only the first digit of the remainder. Any way for it to show 7.0 when 70 divided by 10?
  9. Thanks guys!! creating a batch file did the trick!
  10. Hi, I have a application that runs on users PC and their is a code that check for any updates for that application when it's started. Here is the process 1) Application checks for a update. 2) if there is a update copies the new file to the users desktop and delete the old file. Now that's where I am having the logic issue to delete the old file I have to kill the process first that is running and when I kill the process the whole application closes and the code is not executed to delete the old file. If $VersionNoU > $VersionNo then MsgBox(0, "New Version", "New Version") Filecopy($URL, @UserProfileDir & "\Desktop", 1) Local $list = ProcessList() For $i = 1 To $list[0][0] If StringRegExp($list[$i][0], "^AppName.*$") Then ProcessClose($list[$i][0]) Next $Del = Execute($DelPath) MsgBox(0,"test", $Del) FileDelete($Del)
  11. Great thanks water that's exactly what I was looking for. Thanks!
  12. Hi, I am little confused on how to pass a variable to all the functions. For example I have a function called Func Connect() $sql = _MySQLConnect('root', 'root', 'test', '192.168.0.10') EndFunc And I have other functions that will be using $sql string to connect to the sql. Func Test() Connect() $i = _Query($sql, "select test from test1 limit 1") EndFunc As you can see I want to pass $sql to test() from the connect(). What is the best way to accomplish this? In C it can be accomplished by using pointers I believe. I guess I am looking for a way to make the code faster without increasing the size. I guess one way of doing it would be to make $sql global variable?
  13. I got it working, changing "" to "/" in the file name seem to have worked. It makes sense as mysql is running on linux. But the strange thing is that it worked before. Oh well as long as it works Thanks!
  14. Hi, I am trying to use the query below. It used to work fine but today it doesn't work. The only thing I did was that I dropped the table and re-created it with a different name. But I did change the name of that table in the below query. I have checked the sql server and everything seems to be running fine. The connected to the sql works fine. It's only when I am trying to load data. Mysql is running on ubuntu and I am using win7. _Query($sql, "LOAD DATA local INFILE 'C:db_temp.txt' INTO TABLE temp_tbl lines terminated by 'n'") And here is the error message I get C:Program FilesAutoIt3IncludeMySQL.au3 (48) : ==> The requested action with this object has failed.: Return $oConnectionobj.execute ($sQuery) Return $oConnectionobj.execute ($sQuery)^ ERROR >Exit code: 1 Time: 0.464 My text file looks like this 12345678912345 46465465456415 89748756413212 58446468978941 Any ideas?
  15. .fields(0).Value worked!!!. Thank you!
×
×
  • Create New...