[Discontinued] SpeedSetup 1.4 Beta2
I am sorry, I must of have written the link incorrectly. Sorry for that...
Here's the link again:
File:1->Test.zip

Thanks for the help
.
Here's the link again:
File:1->Test.zip

Thanks for the help

None are more hopelessly enslaved than those who falsely believe they are free. (Goethe)
- Thorsten1867
- Addict
- Posts: 1372
- Joined: Wed Aug 24, 2005 4:02 pm
- Location: Germany
The Save\Load project feature seems to work.
- The most important button "Generate" ist too small. Replace the "About" button with "Generate" (bold?).
- Perhaps it's a good idea to use a menue for 'Settings', 'Save Project',
'Load Project' and 'About'.
- 'Splash_yellow.tga' seems to be green (blue missing)
- It's better to use two buttons for license and readme
I hope this helps you.
- The most important button "Generate" ist too small. Replace the "About" button with "Generate" (bold?).
- Perhaps it's a good idea to use a menue for 'Settings', 'Save Project',
'Load Project' and 'About'.
- 'Splash_yellow.tga' seems to be green (blue missing)
- It's better to use two buttons for license and readme
I hope this helps you.
Last edited by Thorsten1867 on Mon Apr 03, 2006 8:02 pm, edited 2 times in total.
Translated with http://www.DeepL.com/Translator
Download of PureBasic - Modules
Download of PureBasic - Programs
[Windows 11 x64] [PB V5.7x]
Download of PureBasic - Modules
Download of PureBasic - Programs
[Windows 11 x64] [PB V5.7x]
- Thorsten1867
- Addict
- Posts: 1372
- Joined: Wed Aug 24, 2005 4:02 pm
- Location: Germany
-> "Don't replace the files with this extension"
Is it possible to insert more than one extension?
Like this: ini; db
PS: The icons are looking great and the jobs are impressive.
Is it possible to insert more than one extension?
Like this: ini; db
PS: The icons are looking great and the jobs are impressive.
Last edited by Thorsten1867 on Mon Apr 03, 2006 8:15 pm, edited 1 time in total.
Translated with http://www.DeepL.com/Translator
Download of PureBasic - Modules
Download of PureBasic - Programs
[Windows 11 x64] [PB V5.7x]
Download of PureBasic - Modules
Download of PureBasic - Programs
[Windows 11 x64] [PB V5.7x]
I'm trying to build the stub and I've got one big problem. I tried to fix it all day, but i don't get it... Here are some screenshots to see what I mean:


How can I actively repaint the background window? If I move the main one, the background one gets repainted only after I release the mouse button... Any suggestions?

How can I actively repaint the background window? If I move the main one, the background one gets repainted only after I release the mouse button... Any suggestions?
None are more hopelessly enslaved than those who falsely believe they are free. (Goethe)
Not sure if the following helps, but a callback seems to do the job.
(Pinched the gradient drawing from your own post!)
(Pinched the gradient drawing from your own post!)
Code: Select all
Procedure WinCallback(hWnd, uMsg, wParam, lParam)
Result = #PB_ProcessPureBasicEvents
Select uMsg
Case #WM_PAINT
StartDrawing(WindowOutput(Window))
For I = 0 To WindowWidth(Window)
Red.f = 255.0 * (I/WindowWidth(Window))
Line(I, 0, 0, WindowHeight(Window), RGB(Red, 0, 0))
Next
StopDrawing()
EndSelect
ProcedureReturn Result
EndProcedure
OpenWindow(0, 0, 0, 640, 480, "", #PB_Window_SizeGadget | #PB_Window_ScreenCentered | #PB_Window_SystemMenu)
CreateGadgetList(WindowID(0))
OpenWindow(1, 150, 150, 300, 300,"Drag ", #PB_Window_SizeGadget | #PB_Window_ScreenCentered | #PB_Window_SystemMenu,WindowID(0))
SetWindowCallback(@WinCallback(), 0)
Repeat
Select WaitWindowEvent()
Case #PB_Event_CloseWindow
Break
EndSelect
ForEver
I may look like a mule, but I'm not a complete ass.