AutoHotkey Community

It is currently May 26th, 2012, 6:27 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 240 posts ]  Go to page Previous  1 ... 7, 8, 9, 10, 11, 12, 13 ... 16  Next

Do you want HiEdit internaly
Yes
No, I like Edit control
Other (please explain)
You may select 1 option

View results
Author Message
 Post subject: gracis and report
PostPosted: February 6th, 2009, 3:45 pm 
Offline

Joined: March 27th, 2008, 7:46 pm
Posts: 129
Location: France
:lol: Hello majkinetor, Gracias for your speed answer And Many Thanks for your code .

:arrow: 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)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 6th, 2009, 3:51 pm 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
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, "")
}

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 7th, 2009, 9:54 am 
Offline

Joined: July 17th, 2008, 9:46 am
Posts: 225
Thank you A LOT!
IT WORKS!
Greets,
DHMH


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 16th, 2009, 8:51 pm 
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


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: February 16th, 2009, 10:14 pm 
TBH, I didn't even know it doesn't exist :lol:

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


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: February 16th, 2009, 11:12 pm 
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


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: February 17th, 2009, 12:31 pm 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
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.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject: add settext
PostPosted: June 2nd, 2009, 6:00 am 
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.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: June 2nd, 2009, 9:04 am 
Offline

Joined: July 17th, 2008, 9:46 am
Posts: 225
Why don't you use ControlSetText ???
Code:
ControlSetText,HiEdit1,My new text,MyTitle

Greets,
DHMH


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 27th, 2009, 7:31 pm 
Offline

Joined: October 1st, 2005, 9:55 pm
Posts: 775
Location: Texas, USA
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 27th, 2009, 7:44 pm 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
Thats great news. Thx for letting me know. Ill see to update the wrapper as soon as I can.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 27th, 2009, 9:00 pm 
Offline

Joined: June 18th, 2008, 8:36 am
Posts: 4923
Location: AHK Forum
Thats great news indeed :)

_________________
AHK_H (2alpha) AHF TT _Struct WatchDir Yaml _Input ObjTree RapidHotkey DynaRun :wink:


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 28th, 2009, 12:26 pm 
Offline

Joined: July 17th, 2008, 9:46 am
Posts: 225
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 28th, 2009, 1:57 pm 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
*** 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.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 6th, 2009, 3:59 am 
Offline

Joined: October 1st, 2005, 9:55 pm
Posts: 775
Location: Texas, USA
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.


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 240 posts ]  Go to page Previous  1 ... 7, 8, 9, 10, 11, 12, 13 ... 16  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: Apollo, Bing [Bot], Google Feedfetcher, Jaaaaaaaaay and 7 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group