English
Forum

Scroll bar in the MultiEdit

 
- Page 1 -



Hubert
Binnewies
Hello together..

I knows the it ne stupid question is......
but How I get in a MultiEdit whom Scroll bar lane??

thanks Schonmal beforehand

Hubert
 
WinXP Prof, XProfan 9.1 Newbie

Ein kluger Kopf sagte mal:
"Nach dem derzeitigen Stand der Technik ist es unmöglich Programme zu schreiben, die fehlerfrei laufen!"
09/18/06  
 



 
- Page 1 -


Jo Roland .
Hello Hubert...

attempt Please sometime once (it must Yes not immediate his) vaguely To understand, what You there do - the bring insgesammt little more as stumpfes herumdoktorn , and others understand your ask too rather (has Yes not everyone NEN Inteligenzquotienten of 140 ;D ) .

Greeting

Andreas
 
09/19/06  
 



 
- Page 2 -


PS:
You meant So the here, Hubert:
CompileMarkSeparation
CLS
Declare Edit&
LET Edit&=@Control(Edit,ABCDEFGHIJKLMNOPQRSTUVWXYZ123456789,$50011140,20,20,300,300,%HWND,1234,%HINSTANCE,$200)

While 0=0

    Waitinput

a>

but sach now Nich again, that one Control none welt has! I Have same night shift and be for the life of over 70 Humans Responsible - if I there utterly confused reingehe, gives the a catastrophe!
 
09/19/06  
 




Rolf
Koch
*lol* Hubert, I thought You work now with ROC?
I say only one: DesignStudio, there kannste everything try and whom Stilen play. Aufjedenfall get You nice Multis there with edge and without Scroll.
 
09/19/06  
 




Hubert
Binnewies
Andreas Hötker


OK.....I versuchs again......

means...the listing is simply meanwhile To bulkily for here, but I versuchs time with Ner Statement:

I have one Mainwindow with Window Style 720 and Bildschirmfüllend.
hereon one Wallpapers, loaded through LoadBMP.
integrally right a couple Buttons, in the middle one HTML Control and left one MultiEdit.
because of the Optik should now the MultiEdit GENAUSO looks How the HTML Control.

I make me too thoughts above as looks if the future User not so How I on windows Classic Style standing separate rather XP Style to that example silver uses.
thereby Change the welt.
means can I not simply a on the background draw.
I need ONLY whom welt, and the of Edit distinguish itself nunmal from the HTML Control.
and as Control I had none welt, wieso not at me and with you well, knows I do not, would but interestingly to know Why.

so..... and the EDIT comes one PicStatic and hereon as spending Textzeilen as SKControl (because of the transparenten background).

a Sreenshoot can I unfortunately not supplying there it again for a commercial product deals and it should not everyone Guest the here durchs Forum flitzt on The idea come it to To make.

before your now further Lösungsvorschläge power : The problem is already resolved.
(a little bit by the Hintertüre but It's all right)

and :

Andreas Hötker

Hello Hubert...

attempt Please sometime once (it must Yes not immediate his) vaguely To understand, what You there do - the bring insgesammt little more as stumpfes herumdoktorn , and others understand your ask too rather (has Yes not everyone NEN Inteligenzquotienten of 140 ) .

Greeting

Andreas


Sorry...I stoße with over 2500 Lines Programmcode (XProfan, and again so much on PHP) time on one grafisches trouble...
there feel I me with your testimony something on The feet trod.....

The best Programmer has time a Hänger....too DU... what about me have me over none from you jolly made!

Hubert
 
WinXP Prof, XProfan 9.1 Newbie

Ein kluger Kopf sagte mal:
"Nach dem derzeitigen Stand der Technik ist es unmöglich Programme zu schreiben, die fehlerfrei laufen!"
09/20/06  
 



Hubert Binnewies

I make me too thoughts above as looks if the future User not so How I on windows Classic Style standing separate rather XP Style to that example silver uses.
thereby Change the welt.


You can the XP-Theme for single Controls deaktivieren, here time anhand of 2 buttons viewed:
CompileMarkSeparation
DEF SetWindowTheme(3) !uxtheme.dll, SetWindowTheme
DEF GETSYSCOLOR(1) !USER32,GetSysColor
DECLARE BUTTON1&
DECLARE BUTTON2&
DECLARE ENDE%
CLS GETSYSCOLOR(15)
BUTTON1& = CREATE(BUTTON,%HWND,BUTTON,0023,0026,0070,0030)
BUTTON2& = CREATE(BUTTON,%HWND,BUTTON,0105,0026,0070,0030)
DisableXPTheme BUTTON2&

WHILENOT ENDE%

    WAITINPUT

    If @EQU(%KEY,2)

        LET ENDE%= 1

    ELSEIF @EQU(%KEY,4)

    ELSEIF GETFOCUS(BUTTON1&) BUTTON

    ELSEIF GETFOCUS(BUTTON2&) BUTTON

    ENDIF

WEND

Proc DisableXPTheme

    parameters hWnd&
    Declare WORD#
    Dim WORD#, 2
    SetWindowTheme(hWnd&, WORD#, WORD#)
    Dispose WORD#

ENDPROC

 
09/20/06  
 




Hubert
Binnewies
WOW..........thanks!!!!!!
 
WinXP Prof, XProfan 9.1 Newbie

Ein kluger Kopf sagte mal:
"Nach dem derzeitigen Stand der Technik ist es unmöglich Programme zu schreiben, die fehlerfrei laufen!"
09/20/06  
 




Hubert
Binnewies
oha....I habs attempts....functions wonderful with buttons....
but not control edit and html control....unfortunately....
 
WinXP Prof, XProfan 9.1 Newbie

Ein kluger Kopf sagte mal:
"Nach dem derzeitigen Stand der Technik ist es unmöglich Programme zu schreiben, die fehlerfrei laufen!"
09/20/06  
 



Habs on The speedy time with PureBasic tested, means Edit is with XP-Style levelly u. rounded, to DisableXPTheme not any more. WebGadget can I no differences see, whether with XP-Style and without, can means with the routine too nothing see. at least the Edit ought to functions
 
09/20/06  
 



lying on the Message-Handling. before the create the Controlls on Fastmode 1 to put, to the Disablen the XP-Themes kannste again turn back!
CompileMarkSeparation
DEF SetWindowTheme(3) !uxtheme.dll, SetWindowTheme
DEF GETSYSCOLOR(1) !USER32,GetSysColor
DECLARE BUTTON1&
DECLARE BUTTON2&
Declare Edit&
DECLARE ENDE%
CLS GETSYSCOLOR(15)
Set(FastMode,1)
BUTTON1& = CREATE(BUTTON,%HWND,BUTTON,0023,0026,0070,0030)
BUTTON2& = CREATE(BUTTON,%HWND,BUTTON,0105,0026,0070,0030)
Edit& = Create(EDIT, %HWND, , 25, 200, 150, 25)
DisableXPTheme BUTTON2&
DisableXPTheme Edit&
Set(FastMode,0)

WHILENOT ENDE%

    WAITINPUT

    If @EQU(%KEY,2)

        LET ENDE%= 1

    ELSEIF @EQU(%KEY,4)

    ELSEIF GETFOCUS(BUTTON1&) BUTTON

    ELSEIF GETFOCUS(BUTTON2&) BUTTON

    ENDIF

WEND

Proc DisableXPTheme

    parameters hWnd&
    Declare WORD#
    Dim WORD#, 2
    SetWindowTheme(hWnd&, WORD#, WORD#)
    Dispose WORD#

ENDPROC

 
09/20/06  
 




Hubert
Binnewies
HURRAAAAA....

tappt im dunkeln see of course immernoch a tick differently from as with xp Classic, but the lying on it the at XP Style The colours changed go.
but the disturbing in keinster Nature and point.

but for see The welt in JEDEM Style GLEICH from....



and thanks!!!!

Hubert
 
WinXP Prof, XProfan 9.1 Newbie

Ein kluger Kopf sagte mal:
"Nach dem derzeitigen Stand der Technik ist es unmöglich Programme zu schreiben, die fehlerfrei laufen!"
09/20/06  
 



Hello Hubert...

Hubert Binnewies

Sorry...I stoße with over 2500 Lines Programmcode (XProfan, and again so much on PHP) time on one grafisches trouble...


there are in the principle means only small programs, The You there write ..

Hubert Binnewies

there feel I me with your testimony something on The feet trod.....


wasn't bös meant of me, I have me mere self first something verulkt felt, as You me get across wanted, the one Control quite none welt has - have first later Pinned, that You The previous Postings well just not understood have.
here again my gutgemeinter council: try the To understand, what You there do - is really integrally simply...

Hubert Binnewies


The best Programmer has time a Hänger....too DU... what about me have me over none from you jolly made!

Hubert


i'm weder Programmer yet be I the best - only Altenpfleger. About my Error pool so did i on the dearest and lautesten , are the rule too very numerous and quite bescheuert . It's all right me too none therefore, the someone Error power - the does Yes eachone - It's all right me ums understand of/ one Gebenheit. As I said, try simply time To understand, what Control and what Create power and what a Window is. here in the item stand Yes enough Info moreover. If my children a question having, try I inen as many as possible Info above To give, How tappt im dunkeln to Solution come - The response comes then always of them self.

my so? or so vaguely? means always: look time to, I there made have and whether the To your trouble somehow fit - and the ought to one anyhow always do - not blind take and transcribe. i'm of of my assessment sooner one very unsicherer human and I to your Behautung, the one Control none welt certainly 1,5 hours long herumgetestet, Why You with my Control because now none welt see .

Greeting

Andreas, the same to night shift drives and tommorrow once more (without money for To get ran must)
 
09/20/06  
 




Hubert
Binnewies
Andreas Hötker
Hello Hubert...

Hubert Binnewies

Sorry...I stoße with over 2500 Lines Programmcode (XProfan, and again so much on PHP) time on one grafisches trouble...


there are in the principle means only small programs, The You there write ..


i will you now Nich on The feet zurück........ ABER...
Have I written that I ready be????
I Have the Proggi strain first started....tztz...

Andreas Hötker

If my children a question having, try I inen as many as possible Info above To give, How tappt im dunkeln to Solution come - The response comes then always of them self.


The comparison limp not only something....tztz...i'm 43.

Andreas Hötker

not blind take and transcribe


I try always To understand what me with the shred say wants..to that example:

RGH

ws_visible | ws_child | es_autovscroll | es_multiline | ws_tabstop | ws_vscroll | ws_hscroll | $1000 | es_nohidesel


says me where I my eigendlichen Error made have:
I have only whom EditStyles nachgeschaut without The algemeinen WindowStyles To mind.

I have too yet the trouble that I momentarily in a proposition with XProfan,PHP,HTML and MySQL program circa 2 Webspaces and 3 computer moreover bring would like kollisionsfrei together To communicate.
and with so many Languages, The partly gleichklingende command having, itself but in the Syntax and the function in the Endeffekt discern, comes one hold ex and when schmerzhaft confusion.
and therefore institute of technology so did i:

Andreas Hötker

About my Error pool so did i on the dearest and lautesten , are the rule too very numerous and quite bescheuert .


and To guter Letzt:
I must too circa sorry requests, because I respond in the momentum something over, I (of course me self, but its from finanziellen Found necessary) a deadline staid have whom I stick to must and the is More as tight.

I hope your exercises too furthermore so much clemency with me, because not without reason have I the Newbie not yet removes what about me think it'll too yet longer drinbleiben as your so rechnet.

Greeting Hubert
 
WinXP Prof, XProfan 9.1 Newbie

Ein kluger Kopf sagte mal:
"Nach dem derzeitigen Stand der Technik ist es unmöglich Programme zu schreiben, die fehlerfrei laufen!"
09/21/06  
 




Answer


Topictitle, max. 100 characters.
 

Systemprofile:

no Systemprofil laid out. [anlegen]

XProfan:

 Posting  Font  Smilies  ▼ 

Please register circa a Posting To verfassen.
 

Topic-Options

1.952 Views

Untitledvor 0 min.
H.Brill11/25/22
RudiB.09/18/22
Thomas Freier09/04/21
Walter07/23/20
More...

Themeninformationen



Admins  |  AGB  |  Applications  |  Authors  |  Chat  |  Privacy Policy  |  Download  |  Entrance  |  Help  |  Merchantportal  |  Imprint  |  Mart  |  Interfaces  |  SDK  |  Services  |  Games  |  Search  |  Support

One proposition all XProfan, The there's!


My XProfan
Private Messages
Own Storage Forum
Topics-Remember-List
Own Posts
Own Topics
Clipboard
Log off
 Deutsch English Français Español Italia
Translations

Privacy Policy


we use Cookies only as Session-Cookies because of the technical necessity and with us there no Cookies of Drittanbietern.

If you here on our Website click or navigate, stimmst You ours registration of Information in our Cookies on XProfan.Net To.

further Information To our Cookies and moreover, How You The control above keep, find You in ours nachfolgenden Datenschutzerklärung.


all rightDatenschutzerklärung
i want none Cookie