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 

[module] HiEdit 4.0.0.4-5
Goto page Previous  1, 2, 3 ... 9, 10, 11, 12, 13  Next
 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  

Do you want HiEdit internaly
Yes
52%
 52%  [ 37 ]
No, I like Edit control
28%
 28%  [ 20 ]
Other (please explain)
19%
 19%  [ 14 ]
Total Votes : 71

Author Message
soggos



Joined: 27 Mar 2008
Posts: 85
Location: France

PostPosted: Fri Feb 06, 2009 3:45 pm    Post subject: gracis and report Reply with quote

Laughing Hello majkinetor, Gracias for your speed answer And Many Thanks for your code .

Arrow the go function is good, and other standard Too +
Question But i tested the search function , but he never found my word ¿ , i have tested on my second PC it's idem he do nothing, yet the word is in front of my eyes ¿
(i have version of today and it's idem with your old version)
Back to top
View user's profile Send private message Visit poster's website
majkinetor



Joined: 24 May 2006
Posts: 4114
Location: Belgrade

PostPosted: Fri Feb 06, 2009 3:51 pm    Post subject: Reply with quote

No, its not identicall. Its probably your cache returning old thing. Keep in mind that this is silent update so version is the same. I didn't change the HiEdit module only Test script.

Just like that, here is the changed thingie. You need to replace OnFind and FindNext labels with those functions.

Code:
OnFind(Event, Flags, FindWhat, ReplaceWith){
   global gFindWhat, gFlags, hEdit, res

   StringReplace, Flags, Flags, d,
   StringReplace, Flags, Flags, c, MATCHCASE%A_SPACE%
   StringReplace, Flags, Flags, w, WHOLEWORD%A_SPACE%

   res := HE_FindText(hEdit, FindWhat, HE_GetSel(hEdit)+ (res!="")*1, -1, Flags)
   HE_SetSel(hEdit, res, res + StrLen(FindWhat))
   HE_ScrollCaret(hEdit)

   if event=find
      gFindWhat := FindWhat, gFlags := Flags
}

FindNext( hEdit ){
   global gFindWhat, gFlags

   if (gFindWhat = "")
         return
   else OnFind("find", gFlags, gFindWhat, "")
}

_________________
Back to top
View user's profile Send private message
DHMH



Joined: 17 Jul 2008
Posts: 194

PostPosted: Sat Feb 07, 2009 9:54 am    Post subject: Reply with quote

Thank you A LOT!
IT WORKS!
Greets,
DHMH
_________________
Tips & Tricks for Windows XP and Vista... only german! sorry!
German Computerboard
Back to top
View user's profile Send private message Visit poster's website
AGU
Guest





PostPosted: Mon Feb 16, 2009 8:51 pm    Post subject: Reply with quote

Any news on word-wrap within HiEdit control? Would be really cool. All I could find were some news that it's on the ToDo list of the developer but the information is dating back to one year ago.
_________________
Cheers
AGU
Back to top
majkinetor !
Guest





PostPosted: Mon Feb 16, 2009 10:14 pm    Post subject: Reply with quote

TBH, I didn't even know it doesn't exist Laughing

But u are right. It doesn't.
There is nothing new about control. I follow asm forum regulary.
Back to top
AGU
Guest





PostPosted: Mon Feb 16, 2009 11:12 pm    Post subject: Reply with quote

Thanks majkinetor Smile

As far as I know you're in contact with akyprian. Is that right? Could you probably ask him if we can expect a new updated version with word-wrap support or what the current state of affairs is with his HiEdit control? Of couse only if it's not asked too much. Smile

The last release was roundabout May 2008 as far as I know.
__________________
Cheers
AGU
Back to top
majkinetor



Joined: 24 May 2006
Posts: 4114
Location: Belgrade

PostPosted: Tue Feb 17, 2009 12:31 pm    Post subject: Reply with quote

No, I was in contact with akyprian. Seems he is buisy as he didn't visit the forum for months and I doubt HiEdit will be updated as before. The latest updates I have seen were mainly some minor features.

I beleive that if more different ppl are involved with HiEdit on official forum, the chance is bigger for him to realize the value of the control. If I ask for all the new things, he may perceive it the wrong way, as something that is more personal merit then widely requested feature.
_________________
Back to top
View user's profile Send private message
mr scott
Guest





PostPosted: Tue Jun 02, 2009 6:00 am    Post subject: add settext Reply with quote

I love this control as I am using it for a little project, but I only wish there was a settext cmd for it so that the text could be updated without reading from disk, or creating a new tab.
Back to top
DHMH



Joined: 17 Jul 2008
Posts: 194

PostPosted: Tue Jun 02, 2009 9:04 am    Post subject: Reply with quote

Why don't you use ControlSetText ???
Code:
ControlSetText,HiEdit1,My new text,MyTitle

Greets,
DHMH
_________________
Tips & Tricks for Windows XP and Vista... only german! sorry!
German Computerboard
Back to top
View user's profile Send private message Visit poster's website
jballi



Joined: 01 Oct 2005
Posts: 537
Location: Texas, USA

PostPosted: Thu Aug 27, 2009 7:31 pm    Post subject: Reply with quote

FYI... Antonis (aka akyprian) just released v4.0.0.4 of the HiEdit control. The release include a bunch of minor bug fixes and one fairly major bug fix. The release also includes some performance improvements. You can download the latest version here:

http://www.winasm.net/forum/index.php?showtopic=3189
Back to top
View user's profile Send private message Send e-mail
majkinetor



Joined: 24 May 2006
Posts: 4114
Location: Belgrade

PostPosted: Thu Aug 27, 2009 7:44 pm    Post subject: Reply with quote

Thats great news. Thx for letting me know. Ill see to update the wrapper as soon as I can.
_________________
Back to top
View user's profile Send private message
HotKeyIt



Joined: 18 Jun 2008
Posts: 2189
Location: GERMANY

PostPosted: Thu Aug 27, 2009 9:00 pm    Post subject: Reply with quote

Thats great news indeed Smile
_________________
AutoHotFile - ToolTip(n,text,title,options) Wink
Back to top
View user's profile Send private message
DHMH



Joined: 17 Jul 2008
Posts: 194

PostPosted: Fri Aug 28, 2009 12:26 pm    Post subject: Reply with quote

yes, i agree!
Thank you majkinator for updating and providing the wrapper!
I hope you will release the new version as soon as possible!
Greets,
DHMH
_________________
Tips & Tricks for Windows XP and Vista... only german! sorry!
German Computerboard
Back to top
View user's profile Send private message Visit poster's website
majkinetor



Joined: 24 May 2006
Posts: 4114
Location: Belgrade

PostPosted: Fri Aug 28, 2009 1:57 pm    Post subject: Reply with quote

*** version 4.0.0.4-1 ***

- Since there are almost no new features that change the interface, mainly inner-working redesign and bugfixes, only documentation is updated with new stuff and I added new Dll.

I loaded 50GB file and continued working in other tab... pretty awesome...

One nuance still remains. "`" symbol is colored black always, unless its in comment or string. If anybody finds the way to color it with same color as text let me know please. This happens only when syntax highlighting is enabled, even with blank syntax section. Uncomment first line in the code when you run Test.ahk too see this in effect.
_________________
Back to top
View user's profile Send private message
jballi



Joined: 01 Oct 2005
Posts: 537
Location: Texas, USA

PostPosted: Sun Sep 06, 2009 3:59 am    Post subject: Reply with quote

I just noticed that there is a HiEdit_Add2Panel function at the very bottom of the HiEdit library. There is no documentation for it so I'm sure that it was put it there while you were testing other stuff. It's not doing any harm but I thought I would let you know.
Back to top
View user's profile Send private message Send e-mail
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Goto page Previous  1, 2, 3 ... 9, 10, 11, 12, 13  Next
Page 10 of 13

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group