Search found 92 matches

by startup
Thu Jun 11, 2020 8:26 am
Forum: Coding Questions
Topic: Drag+Drop in a listicon
Replies: 16
Views: 5478

Re: Drag+Drop in a listicon

Well thank you all for the help. Shardik's link contained the bar I wanted.
Thanks again.
by startup
Tue Jun 09, 2020 5:22 am
Forum: Coding Questions
Topic: Drag+Drop in a listicon
Replies: 16
Views: 5478

Re: Drag+Drop in a listicon

Thank you very much Marc56us for this example. Would it be asked to much, if you know, how to show some small bar at the place you are dragging to?
by startup
Sat Sep 29, 2018 2:24 pm
Forum: Coding Questions
Topic: How to verify xml content?
Replies: 1
Views: 894

How to verify xml content?

hallo all

is there a way to verify the xml content against a xsd file?
by startup
Fri Feb 16, 2018 12:31 pm
Forum: Coding Questions
Topic: 2 windows 2 message loops
Replies: 10
Views: 2622

Re: 2 windows 2 message loops

thank very much for your help and insides.
i was thinking, that maybe one could somehow start an thread with the bgi window and thus keep it independent.

many thanks
by startup
Fri Feb 16, 2018 12:16 pm
Forum: Coding Questions
Topic: 2 windows 2 message loops
Replies: 10
Views: 2622

Re: 2 windows 2 message loops

great - thanks for all the info and corrections.
is it possible to start the module window and keep it open even if the test program closes?
by startup
Fri Feb 16, 2018 11:21 am
Forum: Coding Questions
Topic: 2 windows 2 message loops
Replies: 10
Views: 2622

Re: 2 windows 2 message loops

part 2:


Procedure Bar(x1.i,y1.i,x2.i,y2.i)
Protected rc.RECT
If (x1 > x2) Or (y1 > y2)
ProcedureReturn
EndIf
x1 + origX
y1 + origY
x2 + origX
y2 + origY
SetRect_(rc,x1,y1,x2+1,y2+1)
If grDirect
FillRect_(gdi1\Hdc,rc,grBrush)
EndIf
FillRect_(gdi2\Hdc,rc,grBrush)
GdiFlush ...
by startup
Fri Feb 16, 2018 11:20 am
Forum: Coding Questions
Topic: 2 windows 2 message loops
Replies: 10
Views: 2622

Re: 2 windows 2 message loops

here is the code, i grabed it from the bgi post: (part 1)

DeclareModule CanvasBgi

EnableExplicit
;DisableDebugger

#NrVideoPages = 2
#FullScr = 0
#CustScr = 1
#ClipOn = #True
#ClipOff = #False
#EmptyFill = 0
#SolidFill = 1
#LineFill = 2
#ColFill = 3
#HatchFill = 4
#SlashFill = 5
#BkSlashFill= 6 ...
by startup
Fri Feb 16, 2018 10:48 am
Forum: Coding Questions
Topic: 2 windows 2 message loops
Replies: 10
Views: 2622

Re: 2 windows 2 message loops

thanks.
is it possible to keep (A) running when an window created outside of (M) closes?
by startup
Fri Feb 16, 2018 9:55 am
Forum: Coding Questions
Topic: 2 windows 2 message loops
Replies: 10
Views: 2622

2 windows 2 message loops

hi,

i have the following problem:

1 window (A), created in a module (M).
(A) should process its messages independent of all other windows created outside of (M).

outside of (M) a window is created and processes its messages. it does call functions in (M).

how can i insulate the messages of (A ...
by startup
Mon Aug 15, 2016 4:01 pm
Forum: Tricks 'n' Tips
Topic: Complex Number
Replies: 8
Views: 4921

Re: Complex Number

on complex number as a whole:
http://milesmathis.com/euclid.html

you may want think about using them.
by startup
Tue Jun 28, 2016 6:26 pm
Forum: Coding Questions
Topic: looking for tiny editor
Replies: 10
Views: 2866

Re: looking for tiny editor

i solved the problem.
thank you all again.
by startup
Tue Jun 28, 2016 2:16 pm
Forum: Coding Questions
Topic: looking for tiny editor
Replies: 10
Views: 2866

Re: looking for tiny editor

there is still one error.

when sizing the window, the width of the edit and listicon do not extend to right. any good tip?
by startup
Tue Jun 28, 2016 1:50 pm
Forum: Coding Questions
Topic: looking for tiny editor
Replies: 10
Views: 2866

Re: looking for tiny editor

Gentlemen - thank you very much.
by startup
Tue Jun 28, 2016 10:17 am
Forum: Coding Questions
Topic: looking for tiny editor
Replies: 10
Views: 2866

Re: looking for tiny editor

thank you for your reply!

here is an example:


XIncludeFile "RichEdit.pbi"

UseModule RichEdit

Global Window_0, Event.i, Quit.i
Global ListIcon_0, Tree_0, Splitter_2, Splitter_3
Global.RichEdit Editor_0; Objectvariable für unser RTF-Control

Enumeration FormMenu
#newdatabase
#openmailbase ...
by startup
Mon Jun 27, 2016 4:12 pm
Forum: Coding Questions
Topic: looking for tiny editor
Replies: 10
Views: 2866

Re: looking for tiny editor

thanks for the help so far. i looked at:
http://www.purebasic.fr/english/viewtopic.php?f=12&t=46948&hilit=richedit+gadget&start=45

and it looks really good. if i try to use this gadget in a windows with a splitter, i get the message:

[ERROR] The specified #Gadget is not initialised.

I use x64 ...