Search found 280 matches

by Mesa
Thu Jan 09, 2020 12:01 pm
Forum: Tricks 'n' Tips
Topic: Own Flat Gadgets as Object
Replies: 24
Views: 11075

Re: Own Flat Gadgets as Object

@Mesa, Tested it under XP and it works for me. Can it be that a PB-Tool runs with you? No, no pb tool runs and a did a new install of pb so with no user things like user librairies, etc. And i've got the same error message "Error: Extends Class ' ' not exists!" for all the gadgets with wi...
by Mesa
Fri Dec 27, 2019 11:54 am
Forum: Tricks 'n' Tips
Topic: Own Flat Gadgets as Object
Replies: 24
Views: 11075

Re: Own Flat Gadget as Objects

I've got this message "Error: Extends Class ' ' not exists!" for all the gadgets with windows XP32b and PB5.71 LTS x86.

M.
by Mesa
Thu Dec 26, 2019 11:12 am
Forum: Tricks 'n' Tips
Topic: convert binary octal hex to decimal
Replies: 4
Views: 1726

Re: convert binary octal hex to decimal

I've got an error on Windows XP32b+PB5.71 LTS x86
PureBasic.asm[111]:MOV qword[v_a],1010b
error:illegal instruction.
M.
by Mesa
Wed Dec 18, 2019 9:31 am
Forum: Coding Questions
Topic: bug with printer example
Replies: 5
Views: 1941

Re: bug with printer example

No problem with XP32b and Pb 5.71

M.
by Mesa
Wed Dec 04, 2019 10:51 am
Forum: Announcement
Topic: PureBasic OpenSource Projects
Replies: 118
Views: 101618

Re: PureBasic OpenSource Projects

I can't find the docmaker !

Because it's not a part of the ide ?

:cry:

Mesa.
by Mesa
Thu Oct 24, 2019 10:09 am
Forum: Announcement
Topic: PureBasic Interface to OpenCV
Replies: 885
Views: 655155

Re: PureBasic Interface to OpenCV

Hi, It's about your Tesseract example. When i compile the cv_OCR_confidence.pb file, everything works fine. But when i want to use the french language, i've got an error. I downloaded the "fra.traineddata" from github (https://github.com/tesseract-ocr/tesseract/wiki/Data-Files) in the &quo...
by Mesa
Thu Oct 10, 2019 5:07 pm
Forum: 3D Programming
Topic: rudder simulation
Replies: 2
Views: 2000

rudder simulation

I need to simulate a rudder (airplane or boat). I want to rotate an entity with arrow keys, but the rotation needs to be on a face of the entity, like a door into its door-frame. Do i need a hingejoint ? Any help, thanx. ; ; ------------------------------------------------------------ ; ; PureBasic ...
by Mesa
Fri Sep 20, 2019 3:26 pm
Forum: Tricks 'n' Tips
Topic: MiniRibon (Multi ToolBars)
Replies: 2
Views: 1413

MiniRibon (Multi ToolBars)

Quickly coded, I mated 2 codes to make a mini-ribon Code of the Wonderful TabBar from STARGATE (modified to a module) http://www.purebasic.fr/english/viewtopic.php?f=12&t=47588 http://help.unionbytes.de/tbg/ Code of the amazing ToolbarEx from Thorsten1867 (modified) https://www.purebasic.fr/engl...
by Mesa
Fri Sep 20, 2019 2:46 pm
Forum: Coding Questions
Topic: Writing text in "multicolor mode"
Replies: 16
Views: 2939

Re: Writing text in "multicolor mode"

Not multicolor but shadowed. If OpenWindow(0, 0, 0, 400, 200, "VectorDrawing", #PB_Window_SystemMenu | #PB_Window_ScreenCentered) CanvasGadget(0, 0, 0, 400, 200) LoadFont(0, "Impact", 24) mx=5 my=5 If StartDrawing(CanvasOutput(0)) DrawingFont(FontID(0)) DrawingMode(#PB_2DDrawing_...
by Mesa
Thu Sep 19, 2019 1:14 pm
Forum: Announcement
Topic: DocMaker for PureBasic
Replies: 8
Views: 8192

Re: DocMaker for PureBasic

"..\..\sqUId\sqUId.pbi" is missing in docmaker.pb.


M.
by Mesa
Thu Sep 05, 2019 2:11 pm
Forum: Applications - Feedback and Discussion
Topic: [Module] Extended ToolBar-Gadget (all OS / DPI)
Replies: 44
Views: 10704

Re: [Module] Extended ToolBar-Gadget (all OS / DPI)

The icon "help" is not visible but it reappears when i comment this line ; ToolBar::TrackBar(#ToolBar, 100, 34, 0, 10, #TrackBar, "trackID", #PB_TrackBar_Ticks) May i say, if you have the idea to use the tabgadget from STARGÅTE here http://www.purebasic.fr/english/viewtopic.php?f...
by Mesa
Thu Aug 01, 2019 10:11 am
Forum: Tricks 'n' Tips
Topic: User Module: Print and Print Preview
Replies: 9
Views: 6323

Re: User Module: Print and Print Preview

I have this message: StartVectorDrawing is missing.

An idea ?

M.
by Mesa
Thu Jul 18, 2019 9:35 am
Forum: Tricks 'n' Tips
Topic: Sort Virtual ListIcon Gadget [Windows]
Replies: 15
Views: 4056

Re: Sort Virtual ListIcon Gadget [Windows]

With my windows XP 32, text headers disappear except the header with the arrow, so i need to change Hdr\fmt = #HDF_BITMAP | TextAlign | #HDF_STRING | Arrow into If Arrow=#HDF_STRING Hdr\fmt = TextAlign | #HDF_STRING; | Arrow Else Hdr\fmt = #HDF_BITMAP | TextAlign | #HDF_STRING | Arrow EndIf to keep ...
by Mesa
Wed Jun 26, 2019 2:41 pm
Forum: Assembly and C Programming in PureBasic
Topic: Procedure InBetween faster ?
Replies: 2
Views: 6893

Procedure InBetween faster ?

Hello, I want to know if a double number (x.d) is in between two integers like that [inf..Sup[ I did a procedure with pb and it works but do you think it's possible to get this procedure faster with assembler (x86 and x64) ? RangeInf.i=0 RangeSup.i=6 x0.d=3.12548 x1.d=29.59842 ;I want to know if x0 ...
by Mesa
Thu Mar 07, 2019 9:19 am
Forum: Coding Questions
Topic: ListIconGadget() starting line
Replies: 4
Views: 892

Re: ListIconGadget() starting line

Found somewhere in this forum: Windows only. Procedure ScrollItemIntoMiddle(ListViewGadget, Item) id = GadgetID(ListViewGadget) itemHeight = SendMessage_(id,#LB_GETITEMHEIGHT,0,0) x = GadgetHeight(ListViewGadget) / itemHeight ;x = GadgetHeight(ListViewGadget)*0.5 / itemHeight - 1 ; top = SendMessage...