Scintilla : how to hide the scintilla window

Just starting out? Need help? Post your questions and find answers here.
User avatar
eddy
Addict
Addict
Posts: 1479
Joined: Mon May 26, 2003 3:07 pm
Location: Nantes

Scintilla : how to hide the scintilla window

Post by eddy »

I want to switch the scintilla window with webgadget

- Is there a message to send ?
User avatar
fsw
Addict
Addict
Posts: 1603
Joined: Tue Apr 29, 2003 9:18 pm
Location: North by Northwest

Re: Scintilla : how to hide the scintilla window

Post 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.
User avatar
eddy
Addict
Addict
Posts: 1479
Joined: Mon May 26, 2003 3:07 pm
Location: Nantes

Post 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.
Last edited by eddy on Mon Jun 09, 2003 5:22 am, edited 2 times in total.
User avatar
fsw
Addict
Addict
Posts: 1603
Joined: Tue Apr 29, 2003 9:18 pm
Location: North by Northwest

Post by fsw »

eddy wrote:Developping a IDE is my largest project.
With scintilla, it become realizable.
Never give up :!:
Never surrender :!:

:wink:
ricardo
Addict
Addict
Posts: 2438
Joined: Fri Apr 25, 2003 7:06 pm
Location: Argentina

Post 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:
ARGENTINA WORLD CHAMPION
User avatar
Rings
Moderator
Moderator
Posts: 1435
Joined: Sat Apr 26, 2003 1:11 am

Post 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 :)
SPAMINATOR NR.1
User avatar
eddy
Addict
Addict
Posts: 1479
Joined: Mon May 26, 2003 3:07 pm
Location: Nantes

Post by eddy »

Me, I do not count any more
the time which I waste.
Post Reply