Search found 7900 matches

by netmaestro
Sat Apr 13, 2024 6:21 pm
Forum: Coding Questions
Topic: How to Scroll (Editor_Input = EditorGadget) to Line x ?
Replies: 5
Views: 200

Re: How to Scroll (Editor_Input = EditorGadget) to Line x ?

For windows: OpenWindow(0,0,0,640,480,"",#PB_Window_ScreenCentered|#PB_Window_SystemMenu) EditorGadget(0,0,0,640,480) For a = 0 To 100 AddGadgetItem(0, a, "Line "+Str(a)) Next SendMessage_(GadgetID(0), #EM_LINESCROLL, 0, 31) SetGadgetState(0,31) Repeat:Until WaitWindowEvent()=#PB...
by netmaestro
Wed Apr 10, 2024 11:03 pm
Forum: Coding Questions
Topic: Vector Drawing
Replies: 6
Views: 358

Re: Vector Drawing

Simple example: Declare procCanvas0() OpenWindow(0,0,0,800,600,"Click to start a line, move cursor and click to set end point and draw", #PB_Window_ScreenCentered|#PB_Window_SystemMenu) CanvasGadget(0,0,0,800,600) BindGadgetEvent(0, @procCanvas0()) Repeat:Until WaitWindowEvent() = #PB_Even...
by netmaestro
Tue Apr 09, 2024 7:27 am
Forum: Coding Questions
Topic: Pushbutton Test Toggling
Replies: 8
Views: 282

Re: Pushbutton Test Toggling

EditorGadget(9001, 590, 530, 420, 230) With this line you reserve space in the executable for 9000 gadgets you're not using. Much better is: Global gEdit = EditorGadget(#PB_Any, 590, 530, 420, 230) where you don't waste any space in the executable at all. Static (hardcoded) gadget numbers have the ...
by netmaestro
Mon Apr 08, 2024 11:51 pm
Forum: Coding Questions
Topic: What variable type is "?" for CatchImage?
Replies: 7
Views: 307

Re: What variable type is "?" for CatchImage?

It's a pointer, nothing more or less. Nothing to spend a lot of time analyzing.
by netmaestro
Mon Apr 08, 2024 11:49 pm
Forum: Coding Questions
Topic: Pushbutton Test Toggling
Replies: 8
Views: 282

Re: Pushbutton Test Toggling

When you assign a large static gadget number to a gadget you reserve room for (gadgetnumber-1) gadgets. In your case up to 11 thousand. Consider using low static numbers or better still, #PB_Any. This way you don't waste scads and scads of space in the executable.
by netmaestro
Wed Apr 03, 2024 8:43 pm
Forum: Coding Questions
Topic: Beginner searching for his learning path
Replies: 16
Views: 814

Re: Beginner searching for his learning path

Feel free to message me with any questions you might have and I'll usually answer pretty quick. I remember my own early days with programming PB and questions answered by seasoned users were the most helpful. I'd stay away from oop for now though, you have to walk before you can run.
by netmaestro
Tue Apr 02, 2024 2:13 pm
Forum: Coding Questions
Topic: Question to Transparence
Replies: 10
Views: 282

Re: Question to Transparence

The Canvas Gadget itself is not transparent so you couldn't use it to achieve transparency through to the desktop.
by netmaestro
Tue Apr 02, 2024 12:30 am
Forum: Coding Questions
Topic: Question to Transparence
Replies: 10
Views: 282

Re: Question to Transparence

Define Tcolor.l Declare TransparentCallback(x, y, sourcecolor.l, targetcolor.l) LoadImage(0, #PB_Compiler_Home + "examples\sources\data\geebee2.bmp") StartDrawing(ImageOutput(0)) Tcolor = Point(0,0) StopDrawing() CreateImage(1, ImageWidth(0), ImageHeight(0), 32, #PB_Image_Transparent) Sta...
by netmaestro
Tue Mar 26, 2024 5:38 pm
Forum: General Discussion
Topic: PHPBB Problem?
Replies: 2
Views: 259

PHPBB Problem?

Here is a link I placed on one of my posts: http://lloydsplace.com/quickupload.zip When I click this link it goes nowhere. But if I copy the text of the link and paste it in the address bar of the browser, it works. One more weird thing: If I change the link to https:// (which my site does not suppo...
by netmaestro
Thu Mar 21, 2024 2:27 am
Forum: Tricks 'n' Tips
Topic: Color Button using API [Windows]
Replies: 4
Views: 477

Re: Color Button using API [Windows]

Nice clean concise code, RASHAD! Great work as always. Putting it in my library.
by netmaestro
Fri Mar 01, 2024 11:47 pm
Forum: Coding Questions
Topic: Solve 1 Equation with 2 Unknowns
Replies: 23
Views: 760

Re: Solve 1 Equation with 2 Unknowns

The real solution for me is the one that lets me eat 25 cookies. :mrgreen:
by netmaestro
Sat Jan 13, 2024 3:58 pm
Forum: Coding Questions
Topic: Webview example stopped working with B2 [solved]
Replies: 1
Views: 272

Webview example stopped working with B2 [solved]

This code, posted in Announcements, runs fine with B1 but with B2 there are many linker errors. Am I doing something wrong? Html$ = ~"<button id=\"increment\">Tap me</button>\n"+ ~"<div>You tapped <span id=\"count\">0</span> time(s).</div>\n"+ ~"<button i...
by netmaestro
Mon Jan 01, 2024 8:06 pm
Forum: Announcement
Topic: PureBasic 6.10 LTS is out !
Replies: 325
Views: 40175

Re: PureBasic 6.10 beta 1 - Xmas Release - is out !

Much better is *lpbData
by netmaestro
Sun Dec 24, 2023 2:50 am
Forum: Coding Questions
Topic: Pb 6.10b1 Super Slow for you?
Replies: 6
Views: 1075

Re: Pb 6.10b1 Super Slow for you?

Could you post your test so I can run it here?