AutoHotkey Community

It is currently May 23rd, 2012, 4:29 am

All times are UTC [ DST ]


Search found 20 matches
Search these results:

Author Message

 Forum: Support   Topic: I tried and I tried - Need help with a condition

 Post subject: FIXED
Posted: November 9th, 2010, 6:50 pm 

Replies: 8
Views: 181


It is fixed by just removing the spaces in the following. if ( Tijd >= 0915 ) AND ( Tijd < 0930 ) { GuiControl,, AgentsOnBreak, Ralph van Leusen 1st } Should be if ( Tijd>=0915 && Tijd<0930 ) { GuiControl,, AgentsOnBreak, Ralph van Leusen 1st } So ...

 Forum: Support   Topic: I tried and I tried - Need help with a condition

 Post subject: NO
Posted: November 9th, 2010, 6:48 pm 

Replies: 8
Views: 181


x79animal wrote:
Code:
Tijd := A_HourA_Min


otherwise theres a space


No you don´t get a space because i used :=

 Forum: Support   Topic: I tried and I tried - Need help with a condition

Posted: November 9th, 2010, 4:55 pm 

Replies: 8
Views: 181


Please help me with the following condition. It almost works, only it keeps displaying the ELSE condition. In the below code Tijd means Time. I am trying to display the Agent that is on his break by conditioning the Time. I know it is a little issue with me coding the Condition. SendMode Input ; Rec...

 Forum: Support   Topic: Simple Time Logging tool

 Post subject: YOU ROCK!!
Posted: August 6th, 2010, 1:20 pm 

Replies: 5
Views: 221


That fixed my problem.

Thank you for your time, and thank you for your explanation.

Great post.

 Forum: Support   Topic: Simple Time Logging tool

Posted: August 5th, 2010, 3:12 pm 

Replies: 5
Views: 221


That does not solve it, no.

It only hides the GUI.

My question was , i don't seem to get it correct with the variables and the Time Format. When i enter a time in the GUI. And the time comes, it doesn't do anything.

 Forum: Support   Topic: Simple Time Logging tool

 Post subject: Simple Time Logging tool
Posted: August 4th, 2010, 3:30 pm 

Replies: 5
Views: 221


Hello good people of AutoHotKey, I am trying to make a tool that automatically starts and stops a tool from work to log my work times. I cant seem to get it work properly. (figures, otherwise i wouldn't ask for help :) ) Please help me, i think it is just a little thing with the time format. I comme...

 Forum: Support   Topic: SOLVED : Checkbox and Iniread/Write

 Post subject: One More thing
Posted: January 28th, 2010, 2:29 pm 

Replies: 8
Views: 810


I found out my code was actually working perfect. What i did wrong was in the end with iniwrite i closed off with a comma. So the iniRead didnot find the %variable% with the comma on the end. So one tiny error and so great problems. For leef_me, sorry if i jumped to conclusion to quick, but you prob...

 Forum: Support   Topic: SOLVED : Checkbox and Iniread/Write

 Post subject: Hugov , You nailed it.
Posted: January 28th, 2010, 1:42 pm 

Replies: 8
Views: 810


Thanks Hugov, That is exactly the answer i needed. I can´t thank you enough, that answered my question and solved my issue. Greetz You made a number of errors. Do set the checked state the value isn't 0 or 1 but the word 'checked' so the 0/1 has to be translated, done here with a loop IniRead, Check...

 Forum: Support   Topic: SOLVED : Checkbox and Iniread/Write

Posted: January 28th, 2010, 11:18 am 

Replies: 8
Views: 810


The question was reading and writing to a INI file with INIREAD and INIWRITE. SO all the edit fields and checkboxes stay remembered when opening the next time. Your answer is about writing INI files with simple single instances. My question was read and write several checkboxes and edit fields in on...

 Forum: Support   Topic: SOLVED : Checkbox and Iniread/Write

 Post subject: This is my program so far
Posted: January 27th, 2010, 4:25 pm 

Replies: 8
Views: 810


This is the program i got so far. Everything work like a charm, it is the INIWRITE and READ that has issues. Tab one is writing ok Tab two does not write to the inifile. Reading does not work, i don't get it. I did precisely what was documented and it does not work. Please , anyone i'm not that brig...

 Forum: Support   Topic: SOLVED : Checkbox and Iniread/Write

Posted: January 27th, 2010, 2:56 pm 

Replies: 8
Views: 810


I have a very simple example script, but i cannot figure it out. Read from ini file works because if i edit the ini the checkboxes will be checked when i restart the script. Write works almost. it writes the INI file and the checkboxes inside. but everything writes to 0. and if i change one to 1 , t...

 Forum: Support   Topic: Simpel script - with call for external EXE

 Post subject: SOLVED
Posted: January 26th, 2010, 4:05 pm 

Replies: 6
Views: 332


This topic is closed

 Forum: Support   Topic: Compile with FileInstall not quite working.

Posted: January 26th, 2010, 3:54 pm 

Replies: 1
Views: 712


I have a script that i want to compile and it works when i compile it but only in the DIR it was previously placed. When i drag the compiled exe to the desktop and run it, it extracts the err.exe to the desktop and runs the script. but i get an error because the file was not found. See script below:...

 Forum: Support   Topic: Simpel script - with call for external EXE

Posted: January 26th, 2010, 12:41 pm 

Replies: 6
Views: 332


Isn't it possible to make a variable and pipe the command to the variable.

Like this:

Code:
MyVar = runwait, %comspec% /c "err.exe /winerror.h 0x80070424"

 Forum: Support   Topic: Simpel script - with call for external EXE

Posted: January 26th, 2010, 12:16 pm 

Replies: 6
Views: 332


there is a tool from microsoft to lookup error codes and there meaning. It is called err.exe and is a console program. I want to call it with an autohotkey GUI script like below. http://www.roytimmermans.be/hotkey.jpg So when you type in an error code the result from the err.exe is piped into the re...
Sort by:  
Page 1 of 2 [ Search found 20 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group