Page 1 of 1

Scintilla : how to hide the scintilla window

Posted: Mon Jun 09, 2003 3:20 am
by eddy
I want to switch the scintilla window with webgadget

- Is there a message to send ?

Re: Scintilla : how to hide the scintilla window

Posted: Mon Jun 09, 2003 4:48 am
by fsw
eddy wrote:I want to switch the scintilla window with webgadget

- Is there a message to send ?
And you want to code an IDE by yourself :?:

:?

You call Scintilla with CreateWindowEx_(...) an Win-API call.
So if you want to show/hide this window you should use Win-API like:

ShowWindow_(hwnd,#SW_SHOW)
and
ShowWindow_(hwnd,#SW_HIDE)

The WebGadget is part of the PureBasic GUI-Toolkit, so for showing/ hiding this, you have to use PureBasic GUI-Toolkit commands.

PS. Eddy, sorry for my initial question, but the solution is so obvious... - no offense.

Posted: Mon Jun 09, 2003 5:08 am
by eddy
Thanx
PS. Eddy, sorry for my initial question, but the solution is so obvious... - no offense.
No problemo, I must learn a day. I'm not omniscient. :?
It is often easier to ask a question on the forum than to seek in API doc. :D

Developping a IDE is my largest project.
With scintilla, it become realizable.

Posted: Mon Jun 09, 2003 5:19 am
by fsw
eddy wrote:Developping a IDE is my largest project.
With scintilla, it become realizable.
Never give up :!:
Never surrender :!:

:wink:

Posted: Mon Jun 09, 2003 7:01 am
by ricardo
eddy wrote:Developping a IDE is my largest project.
With scintilla, it become realizable.
But just hidding its window and parent Scintilla with your form its NOT developing an IDE :D

Why don't you code one from scratch? You will get less admirers, but you will get more fun, believe me :wink:

Posted: Mon Jun 09, 2003 10:03 am
by Rings
eddy wrote:It is often easier to ask a question on the forum than to seek in API doc. :D
hope you use your fingers to search first by yourself before stole our small time :)

Posted: Mon Jun 09, 2003 10:34 am
by eddy
Me, I do not count any more
the time which I waste.