Search found 16 matches

by Schobaer
Wed Mar 10, 2021 10:45 am
Forum: Coding Questions
Topic: PrinterVector why is not printed on the printer
Replies: 4
Views: 1093

Re: PrinterVector why is not printed on the printer

Thank you, was just too stupid!
by Schobaer
Wed Mar 10, 2021 6:33 am
Forum: Coding Questions
Topic: PrinterVector why is not printed on the printer
Replies: 4
Views: 1093

PrinterVector why is not printed on the printer

Hi,
why don't print on the printer? On Canvas it's fine.
Thanks for solution!


If OpenWindow(0, 0, 0, 400, 400, "VectorDrawing", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
CanvasGadget(0, 0, 0, 400, 200)
LoadFont(0, "Times New Roman", 20, #PB_Font_Bold)

Debug DefaultPrinter()
Debug ...
by Schobaer
Sat Sep 01, 2012 7:43 am
Forum: Feature Requests and Wishlists
Topic: SetSpriteOffset3D(#sprite,x,y)
Replies: 4
Views: 1327

SetSpriteOffset3D(#sprite,x,y)

Hallo,
my wish for PB 5 is SetSpriteOffset3D(#sprite,x,y). This Command should set the "Hotspot" i.e. relative to the middle of a sprite (like a spaceship). Then I can use RotateSprite3D() to rotate the spaceship arround and when I now draw the sprite it looks correctly to the enimies. If I don't ...
by Schobaer
Tue Nov 16, 2010 6:52 pm
Forum: Feature Requests and Wishlists
Topic: Database open with a Connection String
Replies: 11
Views: 2816

Re: Database open with a Connection String

Hi,

I think, this is the best method to use DSN.
In this case I had an additional Idee you can see here http://www.purebasic.fr/english/viewtop ... =3&t=41182

EDIT: It is not the best way, but you can connect to the most Databases. Ok, Oracel and so on...
by Schobaer
Sat Feb 20, 2010 4:03 pm
Forum: Feature Requests and Wishlists
Topic: More Database Connector
Replies: 6
Views: 2555

More Database Connector

Such as UsePostgreSQLDatabase() I wish
- UseMSSQLDatabase() for direct use Microsoft SQL-Server
- UseAccessDatabase() for direct use Microsoft Access DBs
- UseMySQLDatabase() for direct use MySQL-Server (I know there are Libs for using)
- UseFBSQLDatabase() for direct use Firebird/Interbase
by Schobaer
Fri Aug 19, 2005 9:23 pm
Forum: Feature Requests and Wishlists
Topic: Combobox and stringgadget
Replies: 1
Views: 1166

Combobox and stringgadget

Hi,
it would be nice when then Combobox suppots more than one column and the stringgadget supports more lines as the size of the gadget.
by Schobaer
Mon Dec 06, 2004 10:54 am
Forum: Feature Requests and Wishlists
Topic: [Implemented] SetGadgetText and ComboBoxGadget
Replies: 2
Views: 1349

With SetGadGetItemText you can change an Item in the ComboBox or ListBox.
by Schobaer
Sat Dec 04, 2004 3:29 pm
Forum: Feature Requests and Wishlists
Topic: [Implemented] SetGadgetText and ComboBoxGadget
Replies: 2
Views: 1349

[Implemented] SetGadgetText and ComboBoxGadget

why don't work setgadgettext with the comboboxgadget? In accordance with the Manual it should do.
by Schobaer
Thu Oct 21, 2004 7:58 pm
Forum: General Discussion
Topic: PB 4.0 Database
Replies: 6
Views: 2458

That's right! I want to convert a VB Project to PB. This Project use MySql. What I mean is: Is it planned in PB 4 to change the language or the handle of databases so I can not use PB 3.9 code in PB 4 code.
by Schobaer
Thu Oct 21, 2004 11:42 am
Forum: General Discussion
Topic: PB 4.0 Database
Replies: 6
Views: 2458

PB 4.0 Database

What changes becomes in PB 4 about Databeses?
by Schobaer
Thu Jul 15, 2004 7:54 pm
Forum: Feature Requests and Wishlists
Topic: Database open with a Connection String
Replies: 11
Views: 2816

Database open with a Connection String

Hi,
it would be nice if PB could open a Database with a ConnectionString like this:

OpenDatabase(0,"Driver=MySQL ODBC 3.51 Driver;Server=192.168.0.1;Host=localhost;Network=DBMSSOCN;Database=Cars;User=root;Password=","","")

So you only need to install the ODBC-Driver but not specify the connection.
by Schobaer
Thu May 13, 2004 8:31 pm
Forum: Coding Questions
Topic: Where are #PB_xxxx
Replies: 3
Views: 1709

Where are #PB_xxxx

Hi,

I am sorry, but can't find a list of the #PB_xxx events and constants. Can anyone help me?
by Schobaer
Tue Mar 23, 2004 4:07 pm
Forum: Feature Requests and Wishlists
Topic: [Implemented] Calender or DatePicker
Replies: 1
Views: 1116

[Implemented] Calender or DatePicker

A Calender or DatePicker would be nice.
by Schobaer
Tue Mar 23, 2004 3:57 pm
Forum: Feature Requests and Wishlists
Topic: function to lock a Gadget
Replies: 4
Views: 1662

Yes, DisableGadgetEvents() is that wat I mean. But only for a specified Gadget!
by Schobaer
Mon Mar 22, 2004 9:20 pm
Forum: Feature Requests and Wishlists
Topic: function to lock a Gadget
Replies: 4
Views: 1662

function to lock a Gadget

A function to lock a Gadget so it doesn't response any actions with an Event so you can for example change the contents of a ComboBox and no Event release.