Search found 33 matches

by cybergeek
Fri Aug 27, 2010 4:01 pm
Forum: Coding Questions
Topic: windows & gadgets without Repeat : Until
Replies: 16
Views: 2522

Re: windows & gadgets without Repeat : Until

it works but crashes application :|
by cybergeek
Fri Aug 27, 2010 9:49 am
Forum: Coding Questions
Topic: windows & gadgets without Repeat : Until
Replies: 16
Views: 2522

Re: windows & gadgets without Repeat : Until

here is an example that halt a program in Autohotkey

http://www.autohotkey.net/~mohdumar/testdll.zip
by cybergeek
Thu Aug 26, 2010 4:47 pm
Forum: Coding Questions
Topic: windows & gadgets without Repeat : Until
Replies: 16
Views: 2522

Re: windows & gadgets without Repeat : Until

the application is in another language
by cybergeek
Thu Aug 26, 2010 3:26 pm
Forum: Coding Questions
Topic: windows & gadgets without Repeat : Until
Replies: 16
Views: 2522

Re: windows & gadgets without Repeat : Until

i create a complex dialog or control in PB to use with another application and embed it in a dll but when that app calls the dll the loop haults the execution!
by cybergeek
Wed Aug 25, 2010 12:41 pm
Forum: Coding Questions
Topic: windows & gadgets without Repeat : Until
Replies: 16
Views: 2522

Re: windows & gadgets without Repeat : Until

TomS wrote:Delay()
Note that the user has no chance of interacting with the window or the gadgets. And he can't close the window. :roll:
then there is no use
by cybergeek
Wed Aug 25, 2010 12:33 pm
Forum: Announcement
Topic: GoScintilla - 2.7 (Purebasic 4.5 onwards)
Replies: 296
Views: 173713

Re: GoScintilla - 2.1 (Purebasic 4.5 only)

yes i have made an AddLexer function

===================================

i have encountered a really mysterious problem (i think it is)

i have PMed u the code

Run the code - goto File -> Open - select any source file
it will create a new tab with that filename and try to load it with source ...
by cybergeek
Wed Aug 25, 2010 12:30 pm
Forum: Coding Questions
Topic: windows & gadgets without Repeat : Until
Replies: 16
Views: 2522

Re: windows & gadgets without Repeat : Until

without any kin of loop
by cybergeek
Wed Aug 25, 2010 11:34 am
Forum: Announcement
Topic: GoScintilla - 2.7 (Purebasic 4.5 onwards)
Replies: 296
Views: 173713

Re: GoScintilla - 2.1 (Purebasic 4.5 only)

srod wrote:Works fine here.

What version of PB are you using?

GoScintilla 2.1 requires PB 4.5 (as made clear at the nxSoftware site); although the function you are trying to use will only work with PB 4.51 RC 2.

pb 4.50 x86

cant me made to work on 4.50 ?
by cybergeek
Wed Aug 25, 2010 11:33 am
Forum: Coding Questions
Topic: windows & gadgets without Repeat : Until
Replies: 16
Views: 2522

windows & gadgets without Repeat : Until

just wondering if i could openwindow or add a gadget and keep it displayed without using a Loop of repeat until ?
by cybergeek
Wed Aug 25, 2010 11:20 am
Forum: Coding Questions
Topic: exec()
Replies: 16
Views: 3301

Re: exec()

works.................
by cybergeek
Wed Aug 25, 2010 11:04 am
Forum: Announcement
Topic: GoScintilla - 2.7 (Purebasic 4.5 onwards)
Replies: 296
Views: 173713

Re: GoScintilla - 2.1 (Purebasic 4.5 only)

have u debugged GOSCI_CopyLexerFromExistingControl(ID, sourceID)

it returns invalid memory access error :| :|
by cybergeek
Wed Aug 25, 2010 10:18 am
Forum: Coding Questions
Topic: scintilla current column
Replies: 3
Views: 1635

Re: scintilla current column

thx a lot........

you could add these to Goscintilla Library sometime?
by cybergeek
Wed Aug 25, 2010 10:15 am
Forum: Coding Questions
Topic: exec()
Replies: 16
Views: 3301

Re: exec()

Hi,

/edit: I found it - here´s the link

http://www.purebasic.fr/german/viewtopic.php?f=11&t=21646&start=0

thx.. but i dont know german ... transalation is very bad ..

but still tried and couldnt get it to work

Define *ByteCode
script.s = "MessageRequester(" + Chr(34) + "Information" + Chr ...
by cybergeek
Tue Aug 24, 2010 4:35 pm
Forum: Coding Questions
Topic: scintilla current column
Replies: 3
Views: 1635

scintilla current column

this retreives the line number of the current line

Code: Select all

ScintillaSendMessage(1,#SCI_LINEFROMPOSITION,ScintillaSendMessage(1,#SCI_GETCURRENTPOS,0,0),0)+1
but how to retreive column? [the pos of caret in the line]