AutoHotkey Community

It is currently May 21st, 2012, 4:38 pm

All times are UTC [ DST ]


Search found 459 matches
Search these results:

Author Message

 Forum: Offtopic   Topic: « What's on your mind? »

Posted: 39 minutes ago 

Replies: 1410
Views: 58540


yea a few extra pins lolol

tbh I've been finding a lot of these mini boxes lately..

 Forum: Support   Topic: treeview GUI

 Post subject: Re: treeview GUI
Posted: Today, 9:20 am 

Replies: 1
Views: 29


Take a close look @ corrupts RichEdit control here:
viewtopic.php?t=19421
I havent tried it myself, but I'm guessing it should do what you want.

 Forum: Custom   Topic: Super-global GUI constants

Posted: Today, 8:56 am 

Replies: 26
Views: 658


Thank you so much these will come in handy!

 Forum: Offtopic   Topic: Unoffic!al DubThread. Sound of evil returns...

Posted: Today, 7:11 am 

Replies: 40
Views: 1089


 Forum: Support   Topic: Min/Max function

 Post subject: Re: Min/Max function
Posted: Yesterday, 11:03 pm 

Replies: 6
Views: 54


[color=#0080FF]nums = 1,3,0,4,99,2,7,5,6 [color=#008000]; these lines assume your Array creation[/color] StringSplit, Array, nums, `,[/color] [color=#008000]; not needed in real script.[/color] sortNums:="" While Array%A_Index% != "" sortNums .= Array%A_Index% "," Sort...

 Forum: Support   Topic: Margin for Edit?

 Post subject: Re: Margin for Edit?
Posted: Yesterday, 6:35 pm 

Replies: 8
Views: 77


Dont have to be a programmer, just need to be able to read. Its just a reference to the quote.

Tried several different rect manipulations all do not work on Edit Controls specifically.

 Forum: Support   Topic: Reliable source for undoc'd constants found!

Posted: Yesterday, 6:27 pm 

Replies: 2
Views: 38


Thanks for the ref.
Looks like theres a new list of super global related constants here:

viewtopic.php?f=13&t=85383

Strange it was updated around the same time of this post lol

 Forum: Support   Topic: Binary->File issues using MSXML2.XMLHTTP via COM

Posted: Yesterday, 6:23 pm 

Replies: 2
Views: 15


Thanks for the response. Is it just me or are the methods for WinHttpRequest , XHR and MSXML2.XMLHTTP pretty much the same? Anyway @ 1st glance I notice that in testing, I wrote the encode parameter as a variable not as a string lolol. the problem is based on the fact that you cant really pass binar...

 Forum: Support   Topic: Binary->File issues using MSXML2.XMLHTTP via COM

Posted: Yesterday, 4:26 pm 

Replies: 2
Views: 15


Found this reference for downloading files using MSXML2.XMLHTTP: using http://www.vbaexpress.com/kb/getarticle.php?kb_id=799 Thought I would give it a try via AHK_L native COM URL = http://www.javascriptkit.com/jkincludes/jksitelogo.gif wc := ComObjCreate("MSXML2.XMLHTTP") wc.Open( "G...

 Forum: Support   Topic: Margin for Edit?

 Post subject: Re: Margin for Edit?
Posted: Yesterday, 4:08 pm 

Replies: 8
Views: 77


What Leef_me said was technically true. This message is processed only by multiline edit controls. Here: http://msdn.microsoft.com/en-us/library/windows/desktop/bb761657%28v=vs.85%29.aspx Hench the reason I had to make the control multiline 1st. I'm still trying to figure out how to adjusting the cl...

 Forum: Support   Topic: Reliable source for undoc'd constants found!

Posted: Yesterday, 3:46 am 

Replies: 2
Views: 38


Working on a script to grab undocumented wm constants from the web as MSDN does not list all initiator numbers and hex ( eg. EM_GETRECT = 0xB2 ). I think found a reliable source here: http://docs.embarcadero.com/products/rad_studio/delphiAndcpp2009/HelpUpdate2/EN/html/delphivclwin32/Messages_EM_GETR...

 Forum: Support   Topic: Margin for Edit?

 Post subject: Re: Margin for Edit?
Posted: Yesterday, 3:34 am 

Replies: 8
Views: 77


In the case of an editbox you can set its upper and lower padding tp := 6 [color=#008000]; the amount of top padding in pixels.[/color] string = This is some text [color=#008000]; <-- write to the text box here[/color] Gui, Add, Edit, -0x200000 hwndEdit vEdit, % string "`n`n" GuiControl,, ...

 Forum: Support   Topic: Questions about unicode

 Post subject: Re: Questions about unicode
Posted: Yesterday, 2:36 am 

Replies: 6
Views: 42


hrm now that I think of it, ahk would probabaly see the hex values as a normal number anyway right?
detracted...

 Forum: Support   Topic: successfully logging in but when opening a new IE...

Posted: May 19th, 2012, 10:55 pm 

Replies: 2
Views: 68


Suggestion: If your going to use COM() to instantiate IE, use it all the way to submit the Username and Password. This Send, %Password%{return} is just plain dangerous IMO. One user mistake, lag window, or some other anomalous behavior and your password is out in the open. Incidentally, I'd bet usin...

 Forum: Support   Topic: Questions about unicode

 Post subject: Re: Questions about unicode
Posted: May 19th, 2012, 10:00 pm 

Replies: 6
Views: 42


detracted by poster At a glance it seems you are trying to use the HEX representation of the Unicode Character. Therefore 6b63 ( or 0x6b63 ) would actually convert to: 27492 ( or &#27492; ). I haven't tried [VxE]'s amazing function, but taking a look @ it, I see it doesn't support HEX reps. for...
Sort by:  
Page 1 of 31 [ Search found 459 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group