PureBasic 4.50 is out !
Re: PureBasic 4.50 is out !
To Andre.
Hi Andre,fred has confirmed its all ok,looks like I upgraded to the correct account way back when.
But thanks.
Hi Andre,fred has confirmed its all ok,looks like I upgraded to the correct account way back when.
But thanks.
They Say You Never Stop Learning,Well I Can`t Seem To Start. 

Re: PureBasic 4.50 is out !
The new release is working well Dudes! Thanks for the hard work! 

Re: PureBasic 4.50 is out !
Hi all I'm new in Pure Basic but I'm very keen on it. For now I use only demo version. But I want to ask you something why I haven't the code viewer in the KDE is it because I'm using demo version or in the new version 4.50 it is removed ? If I have the full version will I have the code viewer ? Thank you 

Re: PureBasic 4.50 is out !
No 100% sure what you are referring to, but does shift-TAB do what you are looking for?nase09 wrote:Still no 'Backspace-Unindent
Re: PureBasic 4.50 is out !
Not a clue what you mean... what codeviewer?Krisko wrote:Hi all I'm new in Pure Basic but I'm very keen on it. For now I use only demo version. But I want to ask you something why I haven't the code viewer in the KDE is it because I'm using demo version or in the new version 4.50 it is removed ? If I have the full version will I have the code viewer ? Thank you
( PB6.00 LTS Win11 x64 Asrock AB350 Pro4 Ryzen 5 3600 32GB GTX1060 6GB)
( The path to enlightenment and the PureBasic Survival Guide right here... )
( The path to enlightenment and the PureBasic Survival Guide right here... )
Re: PureBasic 4.50 is out !
I mean this at the right bottom. When you use the Visual Designer and select some button or whatever you want down on the screen you see the code viewer and write your code for this button for example.blueznl wrote:Not a clue what you mean... what codeviewer?Krisko wrote:Hi all I'm new in Pure Basic but I'm very keen on it. For now I use only demo version. But I want to ask you something why I haven't the code viewer in the KDE is it because I'm using demo version or in the new version 4.50 it is removed ? If I have the full version will I have the code viewer ? Thank you

Re: PureBasic 4.50 is out !
Ah, now I understand. Well, unfortunately the whole Visual Designer is pretty much up for a total rehaul, and I'm not sure the PB devs have included an up-to-date version for Linux, and I do know the Windows version isn't quite there either. I think that's one of their future plans, but for now it's a bit of a gap I fear.
( PB6.00 LTS Win11 x64 Asrock AB350 Pro4 Ryzen 5 3600 32GB GTX1060 6GB)
( The path to enlightenment and the PureBasic Survival Guide right here... )
( The path to enlightenment and the PureBasic Survival Guide right here... )
Re: PureBasic 4.50 is out !
Menu mnemonics still don't work, that's annoying.
Re: PureBasic 4.50 is out !
no I don't mean 'Tab-Unindent'..aaron wrote: No 100% sure what you are referring to, but does shift-TAB do what you are looking for?
From Lazarus Wiki :"Auto Indent... This includes "auto un-indent": If the caret is located after the last whitespace of a continuous block of whitespaces at the beginning of a line, then pressing backspace will un-indent. This is done by looking for a start of line (indent) in the line(s) above the current line. For an line containing Whitespaces only (see trim-trailing-space modes) this happens if the caret is at the end of the line."
(not a big thing.. but it makes sense)
Re: PureBasic 4.50 is out !
The 4.5 New arrived in time ...
Long live the 4.6 in December ...
What a team !


Long live the 4.6 in December ...

What a team !


Sorry for my english
! (Windows Xp, Vista and Windows 7, Windows 10)

Re: PureBasic 4.50 is out !
They seem to work fine with 4.50 on Windows Vista:Trond wrote:Menu mnemonics still don't work, that's annoying.
Code: Select all
If OpenWindow(0, 100, 150, 195, 260, "PureBasic - Menu")
If CreateMenu(0, WindowID(0))
MenuTitle("&File")
MenuItem( 1, "&Load...")
MenuItem( 2, "Save")
MenuItem( 3, "Save As...")
MenuBar()
OpenSubMenu("Recents")
MenuItem( 5, "Pure.png")
MenuItem( 6, "Basic.jpg")
OpenSubMenu("Even more !")
MenuItem( 12, "Yeah")
CloseSubMenu()
MenuItem( 13, "Rocks.tga")
CloseSubMenu()
MenuBar()
MenuItem( 7, "&Quit")
MenuTitle("E&dition")
MenuItem( 8, "Cut")
MenuItem( 9, "C&opy")
MenuItem(10, "Paste")
MenuTitle("&?")
MenuItem(11, "About")
EndIf
DisableMenuItem(0, 3, 1)
DisableMenuItem(0, 13, 1)
Repeat
Select WaitWindowEvent()
Case #PB_Event_Menu
Select EventMenu()
Case 11 ; About
MessageRequester("About", "Cool Menu example", 0)
Default
MessageRequester("Info", "MenuItem: "+Str(EventMenu()), 0)
EndSelect
Case #PB_Event_CloseWindow
Quit = 1
EndSelect
Until Quit = 1
EndIf
End
Re: PureBasic 4.50 is out !
Oh I mean the image menus. Try it with CreateImageMenu().USCode wrote:They seem to work fine with 4.50 on Windows Vista:Trond wrote:Menu mnemonics still don't work, that's annoying.
Re: PureBasic 4.50 is out !
Works fine here...Trond wrote:Oh I mean the image menus. Try it with CreateImageMenu().USCode wrote:They seem to work fine with 4.50 on Windows Vista:Trond wrote:Menu mnemonics still don't work, that's annoying.
try the example in the Help file:
Code: Select all
If LoadImage(0, OpenFileRequester("Choose an icon file", "", "", 0))
If OpenWindow(0, 200, 200, 200, 100, "Image menu Example")
If CreateImageMenu(0, WindowID(0)) ; menu creation starts....
MenuTitle("Project")
MenuItem(1, "Open" +Chr(9)+"Ctrl+O", ImageID(0))
MenuItem(2, "Save" +Chr(9)+"Ctrl+S")
MenuItem(3, "Save as"+Chr(9)+"Ctrl+A")
MenuItem(4, "Close" +Chr(9)+"Ctrl+C")
EndIf
Repeat : Until WaitWindowEvent() = #PB_Event_CloseWindow
EndIf
EndIf