Jump to content

FenrIX

Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by FenrIX

  1. Well, sorry that google didn't show me this ticket, and also forum search, lazy like old dog, gave me just 4 result for "floating point support not loaded". And even Wiki on this site gave me this result: http://www.autoitscript.com/w/index.php?title=Special%3ASearch&search=floating+point+support&go=Go Sorry that i'm so stupid to search anywhere (really anywhere, before even thinking about registering and asking this question), except bugtracker! In my opinion you don't bother to think twice about my problem, or even look into it a bit deeper than asking google and giving first random link. Sorry, it's just my not-so-humble, arrogant's newbie opinion. Many thanks goes to trancexx, AdmiralAlkex and water for trying to help me and pointing to my mistakes. //btw: sorry for my bad English.
  2. Oooo-k. This is just plain weird. 2 hours ago i tried with 3.3.6.1, as described below, in this post: Now i redownloaded 3.3.6.1, and... it's miracle! And also i redownloaded 3.3.0.0... its either miracle, or some kind of the conspiracy theory! Thank you! now i'm feeling like a clown.
  3. Sorry, didn't see it. http://imageshack.us/photo/my-images/21/step4fd.jpg/
  4. Step 1: http://imageshack.us/photo/my-images/571/step1r.jpg Step 2: http://imageshack.us/photo/my-images/214/step2y.jpg Step 3: http://imageshack.us/photo/my-images/585/step3k.jpg Last step (with error) popups twice, after that SciTe closes without any error. What am i doing wrong?
  5. Cool! you are suggesting me to follow "who_knows_who_made_this_site"'s solution? Site with strange template-like content with some variable changed for "a runtime error r6002 floating point support not loaded"? And suggesting to download, run and "fix my registry" with "who_knows_what_is_this_program" on working terminal server in enterprise? Well, great, i will follow it! also, here is great solution (from the same suggested site): http://yang.articlesbase.com/software-articles/runtime-error-r6002-why-it-occurs-and-how-to-fix-2506184.html </sarcasm> Sorry, got carried away. If seriously, here, on this forum there was thread with some reference to utility to fix VC2005:
  6. cmd -> cd <dir with autoit3.exe and scripts> -> autoit3.exe <scriptname> also: autoit3.exe and choosing script name in open dialog. also: SciTe (1.77 from 24 dec 2008) -> open -> F5. always same result. DEP in windows server turned off.
  7. 3.3.0.0 3.3.2.0 3.3.4.0 3.3.6.0 3.3.6.1 Tried all of them, same result. OS: windows server standard 2003 x86, with terminal services. UPD: also reinstalled MS VC++ 2005, 2005SP1, 2008, 2008SP1, 2010 redistributes.
  8. Hello! I have this script: dim $a = 2/3 msgbox (0, 'Current value',$a) When i'm trying to run it as script (through autoit3.exe), im getting MS VC++ error 6002: Floating point error not loaded. But if i will compile it with auto2exe.exe into value.exe, it gives me right message box (with value 0.66666667) Also, i'm having trouble with next part of the script: $t=ControlGetText("Active","","[CLASS:Edit; INSTANCE:4]") if $t="" Then Exit EndIf $p=StringSplit($t,"/") $p[1] +=1 if $p[1]=13 Then $p[1]=1 $p[2]+=1 EndIf $t=$p[1]&"/"&$p[2] First 5 lines works perfectly ($t always gets right text from form, and its format: mm/yyyy); With some msgbox's help i found that this error (Floating point support) pop-ups on the next line: $p[1] +=1 And again, if i'll compile this file with auto2exe.exe (into shiftperiod.exe) it'll work fine without any errors. my questions are: 1) how to make both this scripts work as.. well, scripts (with loading from cli of autoit3.exe). 2) I have to work with some dynamically generated scripts, so right now to work it out i have to generate scripts, compile them with auto2exe.exe /in <> /out <>, and run this compiled files. It's like building airport in the place of telephone booth..
×
×
  • Create New...