 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Do you want HiEdit internaly |
| Yes |
|
52% |
[ 37 ] |
| No, I like Edit control |
|
28% |
[ 20 ] |
| Other (please explain) |
|
19% |
[ 14 ] |
|
| Total Votes : 71 |
|
| Author |
Message |
soggos
Joined: 27 Mar 2008 Posts: 85 Location: France
|
Posted: Fri Feb 06, 2009 3:45 pm Post subject: gracis and report |
|
|
Hello majkinetor, Gracias for your speed answer And Many Thanks for your code .
the go function is good, and other standard Too +
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 |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 4114 Location: Belgrade
|
Posted: Fri Feb 06, 2009 3:51 pm Post subject: |
|
|
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 |
|
 |
DHMH
Joined: 17 Jul 2008 Posts: 194
|
|
| Back to top |
|
 |
AGU Guest
|
Posted: Mon Feb 16, 2009 8:51 pm Post subject: |
|
|
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
|
Posted: Mon Feb 16, 2009 10:14 pm Post subject: |
|
|
TBH, I didn't even know it doesn't exist
But u are right. It doesn't.
There is nothing new about control. I follow asm forum regulary. |
|
| Back to top |
|
 |
AGU Guest
|
Posted: Mon Feb 16, 2009 11:12 pm Post subject: |
|
|
Thanks majkinetor
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.
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
|
Posted: Tue Feb 17, 2009 12:31 pm Post subject: |
|
|
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 |
|
 |
mr scott Guest
|
Posted: Tue Jun 02, 2009 6:00 am Post subject: add settext |
|
|
| 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
|
|
| Back to top |
|
 |
jballi
Joined: 01 Oct 2005 Posts: 537 Location: Texas, USA
|
Posted: Thu Aug 27, 2009 7:31 pm Post subject: |
|
|
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 |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 4114 Location: Belgrade
|
Posted: Thu Aug 27, 2009 7:44 pm Post subject: |
|
|
Thats great news. Thx for letting me know. Ill see to update the wrapper as soon as I can. _________________
 |
|
| Back to top |
|
 |
HotKeyIt
Joined: 18 Jun 2008 Posts: 2189 Location: GERMANY
|
|
| Back to top |
|
 |
DHMH
Joined: 17 Jul 2008 Posts: 194
|
|
| Back to top |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 4114 Location: Belgrade
|
Posted: Fri Aug 28, 2009 1:57 pm Post subject: |
|
|
*** 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 |
|
 |
jballi
Joined: 01 Oct 2005 Posts: 537 Location: Texas, USA
|
Posted: Sun Sep 06, 2009 3:59 am Post subject: |
|
|
| 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 |
|
 |
|
|
You can post new topics in this forum You can reply to topics in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|