Search found 15 matches

by Sven
Sat Jul 22, 2006 1:29 pm
Forum: Feature Requests and Wishlists
Topic: [Implemented] DesktopX and DesktopY missing
Replies: 1
Views: 1053

[Implemented] DesktopX and DesktopY missing

In the desktop library the commands DesktopX and DesktopY are missing. You may ask, what are they used for? With more than one windows desktop you can place the 2nd... desktops anywhere around the 1st one.


+---+---+
| 1 | 2 |
+---+---+
or
+---+
| 1 +---+
+---+ 2 |
+---+
or
+---+---+
| 2 | 1 ...
by Sven
Sat Jun 03, 2006 2:57 pm
Forum: Feature Requests and Wishlists
Topic: OpenScreen() with #DesktopNumber
Replies: 2
Views: 1161

By now I create a full-screen window on the 2nd desktop and open a windowed screen. But this is not a really good solution, cause you can't change screen size, depth and refresh rate... So I'm waiting for this. It is possible to open a screen on 2nd desktop with directx, but then you can't use alle ...
by Sven
Wed May 31, 2006 2:34 pm
Forum: Feature Requests and Wishlists
Topic: Copy for Debugger Error Window
Replies: 7
Views: 2192

I don't mean about the debugger output, but about the error requester the polink errors, asm errors, unresolved externals... are shown. That's a plain text output you cannot copy but with screenshoot.

Sven
by Sven
Wed May 31, 2006 11:29 am
Forum: Feature Requests and Wishlists
Topic: Copy for Debugger Error Window
Replies: 7
Views: 2192

Copy for Debugger Error Window

Could you add a copy button to the debugger error window please, so one can copy the error messages to clipboard for easy posting it.

Sven
by Sven
Mon May 29, 2006 3:21 pm
Forum: The PureBasic Editor
Topic: Any visual design type source available?
Replies: 9
Views: 6023

@Berikco

Can you post the link to the old Visual Designer source again, please? I need the possibility for moving and sizing some gadgets with mouse by my own but have no idea how to start.

It's not another VD project ;-)

Sven
by Sven
Tue May 23, 2006 1:52 pm
Forum: Coding Questions
Topic: ExplorerComboGadget don't work => ok
Replies: 2
Views: 1003

Ok, misunderstanding the german help. Sorry.

Sven
by Sven
Mon May 22, 2006 5:30 pm
Forum: Coding Questions
Topic: ExplorerComboGadget don't work => ok
Replies: 2
Views: 1003

ExplorerComboGadget don't work => ok

;ExplorerComboGadget don't work
;If you start with a subdirectory, it is not possible to select
;any other subdirectory, the're not shown. So if you start with
;a drive, no directory is available.
;It does not depent on the flags, see example below from help file, slightly modified.
;Testet with ...
by Sven
Thu May 11, 2006 7:14 pm
Forum: Coding Questions
Topic: OpenScreen on second desktop
Replies: 0
Views: 474

OpenScreen on second desktop

I want to open a screen on the 2nd desktop, while the main window is on the 1st desktop. For now I have two possibilities:

Open a window on the 2nd desktop, and open a windowed screen on this window. But than I can't change the screen size and depth...

Open a screen using DirectX-commands. But ...
by Sven
Thu Apr 13, 2006 12:02 pm
Forum: Coding Questions
Topic: WaitWindowEvent - TimeOut and SetTimer
Replies: 4
Views: 1538

Ok, now I understood. I thought the WaintWindowEvent() responds only on WindowEvents the directly occur to the window, not on CallBack-Events that don't (?) give an event at WaitWindow Event().

Thanks.

Sven
by Sven
Thu Apr 13, 2006 10:51 am
Forum: Coding Questions
Topic: WaitWindowEvent - TimeOut and SetTimer
Replies: 4
Views: 1538

Of course? Maybe this is a normal behavior, but:

- why do I get no more TimeOuts when the window lost the focus?
- why does the TimerCallback only show the API-Timer-Events? wParam always is the timer-ID set with SetTimer_(), so the WaitWindowEvent()-TimeOut get lost somewhere.

So if one want to ...
by Sven
Wed Apr 12, 2006 10:22 pm
Forum: Coding Questions
Topic: WaitWindowEvent - TimeOut and SetTimer
Replies: 4
Views: 1538

WaitWindowEvent - TimeOut and SetTimer

Maybe you can tell if this is a bug or not:

;WaitWindowEvent gives no longer #PB_Event_TimeOut if an API-Timer is running
;with smaller timer value than WaitWindowEvent(TimeOut)
;and the window has lost the focus

;start and focus an other window (debugger...)

#wIDmain = 0
#tIDtimer = 0

#PB ...
by Sven
Mon Apr 03, 2006 9:57 am
Forum: Coding Questions
Topic: MDI-Gadgets and Tab-cycling
Replies: 3
Views: 1045

MDI-Gadgets and Tab-cycling

While using this snippet:

#Main = 0
#MDIChild = 1
If OpenWindow(#Main, 0, 0, 400, 300, "MDIGadget", #PB_Window_SystemMenu|#PB_Window_ScreenCentered|#PB_Window_SizeGadget|#PB_Window_MaximizeGadget)
If CreateGadgetList(WindowID(#Main)) And CreateMenu(#Main, WindowID(#Main))
MenuTitle("Menu index ...
by Sven
Mon Apr 03, 2006 9:19 am
Forum: Feature Requests and Wishlists
Topic: WaitWindowEvent(TimeOut) with #PB_Event_TimeOut
Replies: 1
Views: 993

WaitWindowEvent(TimeOut) with #PB_Event_TimeOut

I would suggest to have a #PB_Event_TimeOut-constant added to the events returned with WaitWindowEvent(TimeOut), so one can ask für this like the other events (now it is just Zero).

Thanks for the TimeOut, good idea.

Sven
by Sven
Thu Mar 30, 2006 10:51 am
Forum: Feature Requests and Wishlists
Topic: OpenScreen() with #DesktopNumber
Replies: 2
Views: 1161

OpenScreen() with #DesktopNumber

Is it possible to have a #DesktopNumber on OpenScreen() so I can use the infos got with ExamineDesktops() and open a screen on a second (third...) desktop?

Sven
by Sven
Mon Mar 27, 2006 1:17 pm
Forum: Feature Requests and Wishlists
Topic: ButtonImageGadget with #PB_Button_Toggle
Replies: 0
Views: 772

ButtonImageGadget with #PB_Button_Toggle

Sorry if this was ask before: Is it possible to have a #PB_Button_Toggle-Flag with ButtonImageGadget()?


Flags = #PB_Button_Toggle
ButtonImageGadget(#Gadget, x, y, Width, Height, ImageID[, Flags])


To update the Image, I would suggest a function


SetGadgetImage(#Gadget, ImageID ...