AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Search found 25 matches
AutoHotkey Community Forum Index
Author Message
  Topic: Drag&Drop Support for ListBoxes
dadepp

Replies: 15
Views: 4312

PostForum: Scripts & Functions   Posted: Tue Oct 11, 2011 9:08 pm   Subject: Drag&Drop Support for ListBoxes
Version 1.3

- Added unicode support
- Removed global variables
- Finally tracked down and fixed a known issue:
If the mouse leaves the listbox while dragging, and then enters again from the bo ...
  Topic: Drag&Drop Support for ListBoxes
dadepp

Replies: 15
Views: 4312

PostForum: Scripts & Functions   Posted: Mon Oct 03, 2011 12:34 pm   Subject: Drag&Drop Support for ListBoxes
Version 1.2.1
Fixed a bug (thx Invalid User):
If the target listbox is empty and the drop is released somewhere other than the first line (even though its empty windows says there is one!) of the em ...
  Topic: [Func] HTTPRequest: for Web APIs [AHK-B + AHK-L+Unicode+x64]
dadepp

Replies: 176
Views: 12528

PostForum: Scripts & Functions   Posted: Thu Aug 18, 2011 1:01 pm   Subject: [Func] HTTPRequest: for Web APIs [AHK-B + AHK-L+Unicode+x64]
First off thank you for this great function.

It didnt fully fit my needs, so I modified it a bit:
I included resume support for downloading files, and a transfer-abort ability.

[url=http://www. ...
  Topic: AutoHotkey_L: Arrays, Debugger, x64, COM, #If expression ...
dadepp

Replies: 1035
Views: 177350

PostForum: Scripts & Functions   Posted: Fri Jul 09, 2010 10:19 pm   Subject: AutoHotkey_L: Arrays, Debugger, x64, COM, #If expression ...
Hi, first of all thanks for AHK_L, a great masterpiece Cool !

Well since I started to update a few of my older scripts to work with Unicode, I stumbled upon a problem with encrypting unicode strings ...
  Topic: [Solved] Encryption + unicode + AHK_L unicode
dadepp

Replies: 2
Views: 474

PostForum: Ask for Help   Posted: Mon May 31, 2010 8:05 pm   Subject: [Solved] Encryption + unicode + AHK_L unicode
Since I did run into a similar problem, one solution would be to encode the string in UTF-7 first, then those functions should work again.


MsgBox, % p:=utf7encode("žccšd")
...
  Topic: LVA: Color individual cells of a ListView, and more ...
dadepp

Replies: 33
Views: 7112

PostForum: Scripts & Functions   Posted: Mon May 24, 2010 8:14 pm   Subject: LVA: Color individual cells of a ListView, and more ...
First off I'm sorry it took me this long to reply, but I was otherwise preoccupied and the notification mail got lost/spammfiltered or i simply overlooked it. (that and I must admit, I kinda forgot ab ...
  Topic: cRichEdit - Standard RichEdit control for AutoHotkey scripts
dadepp

Replies: 105
Views: 31007

PostForum: Scripts & Functions   Posted: Tue Jan 26, 2010 6:14 pm   Subject: cRichEdit - Standard RichEdit control for AutoHotkey scripts
Can't that highlighting be automatic for known words - just like in editors =)
Well since I ventured down that road a while ago, maybe this is what you are looking for:
[url=http://www.autohotkey.co ...
  Topic: Problem with COM: Adapting a VB example to AHK
dadepp

Replies: 8
Views: 724

PostForum: Ask for Help   Posted: Thu Dec 10, 2009 10:49 pm   Subject: Problem with COM: Adapting a VB example to AHK
care to share these?
#Include cGUI.ahk
#Include cRichEdit.ahk

; requires corrupts richedit implementation:
; http://www.autohotkey.com/forum/ntopic49028.html
;
.....
........

It ...
  Topic: Problem with COM: Adapting a VB example to AHK
dadepp

Replies: 8
Views: 724

PostForum: Ask for Help   Posted: Thu Dec 10, 2009 5:29 pm   Subject: Problem with COM: Adapting a VB example to AHK
First off many thanks for taking the time to help the idiotic me.

You did it completely wrong. It's a great mystery how you reached the posted code from the mentioned VB code. Do you understand the ...
  Topic: Problem with COM: Adapting a VB example to AHK
dadepp

Replies: 8
Views: 724

PostForum: Ask for Help   Posted: Wed Dec 09, 2009 11:20 pm   Subject: Problem with COM: Adapting a VB example to AHK
Bump!

After a few hours on google, i came up with something that might work:
(but its probally just wishfull thinking on my part Sad )
ptobj := COM_CreateObject("IID_IUnknown" ...
  Topic: Problem with COM: Adapting a VB example to AHK
dadepp

Replies: 8
Views: 724

PostForum: Ask for Help   Posted: Wed Dec 09, 2009 12:33 am   Subject: Problem with COM: Adapting a VB example to AHK
Perhaps supplying the VBScript might help.
; Example VB Code that I tried to adapt:
; http://www.tech-archive.net/Archive/VB/microsoft.public.vb.general.discussion/2009-01/msg01380.html
I w ...
  Topic: Problem with COM: Adapting a VB example to AHK
dadepp

Replies: 8
Views: 724

PostForum: Ask for Help   Posted: Tue Dec 08, 2009 8:23 pm   Subject: Problem with COM: Adapting a VB example to AHK
Hi,

hope someone with COM knowledge can help me out here.
I'm trying to access the TOM implementation of a Richedit via COM.

I already have tried to adapt an example from VB, but failed on some ...
  Topic: BFDB, a Ini-file replacement
dadepp

Replies: 10
Views: 2036

PostForum: Scripts & Functions   Posted: Tue Nov 10, 2009 5:54 am   Subject: BFDB, a Ini-file replacement
At save and load function, I recommend to use Critical mode. It does not affect all functions and the script works like ever, except load and save routines are faster now.
Thanks, that improved it ev ...
  Topic: BFDB, a Ini-file replacement
dadepp

Replies: 10
Views: 2036

PostForum: Scripts & Functions   Posted: Mon Nov 09, 2009 7:48 pm   Subject: BFDB, a Ini-file replacement
And I wanted to say you should save the file content to be written in memory (variable) until operation is at end, and then FileAppend just one time.

Thanks for the feedback. And your method is exa ...
  Topic: BFDB, a Ini-file replacement
dadepp

Replies: 10
Views: 2036

PostForum: Scripts & Functions   Posted: Mon Nov 09, 2009 7:10 pm   Subject: BFDB, a Ini-file replacement
I had just a quick look into the source and noticed a bug in function BFDB_LoadFromFile(). Its the Line:
c = % Chr("0x" c)
I think you should know what I mean.

Well sorry, but y ...
 
Page 1 of 2 Goto page 1, 2  Next
All times are GMT
Jump to:  


Powered by phpBB © 2001, 2005 phpBB Group