Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Qedo

#16
it's true dreamerman if I launch
EditorE.exe           ----> GLBasic IDE, Version: 16.927
GLBasicEditorE.exe    ----> GLBasic IDE, Version: 16.793

however in both cases jpg is not recognized
#17
Hello everyone
I have a problem with GLB steam version 16793 win 10 which didn't exist until 15 days ago and therefore shouldn't be a bug.
It happened that win10 got corrupted and I had to reinstall the OS and also Glbasic by downloading correctly from Steam.
From that moment on, any glbasic program no longer recognizes jpg files, only png and bmp.
   name_jpg$="D:/greg66.jpg"
   IF DOESFILEEXIST(name_jpg$)
      LOADSPRITE name_jpg,10
      DRAWSPRITE 10,0,0
      GETSPRITESIZE 10,ssx,ssy // result ssx=0 and ssy=0
      SHOWSCREEN
      MOUSEWAIT
   endif
With this example program nothing is displayed
Anyone have any ideas?
PS with Glbasic15 no problem everything works
#18
you found it in:
HTML5\tools\HtmlPost.app\Media
#19
Quote from: spacefractal on 2023-Feb-20
to get right click working:
uses the new lib_glb_plus.js and replace the old one. that one does not needs any added changes to get it working, so you can uses MOUSESTATE with right click now (the posttool does that for you now).
#20
can anyone send the imput source? it would be an appreciated  :good:
thank you
#21
Tutorials / Re: Chat.GPT
2023-Nov-22
Great, but Chat.GPT needs to study the syntax of Glbasic better  =D
#22
DDgui_msg freeze html5:

result% = DDgui_msg("yes or not",TRUE )
#23
Don't worry SF, perfect, tried and the right mouse works. Thank you :nw:
#24
tried it and it's very nice big, the only problem but maybe it's my problem is the management of the direction keys
Perhaps they are too far away and often have to look at the position of my finger in relation to theirs.I don't know.
I will continue to play it to practice. Well done :booze:
#25
Quote from: spacefractal on 2023-Feb-20to get right click working:
uses the new lib_glb_plus.js and replace the old one. that one does not needs any added changes to get it working, so you can uses MOUSESTATE with right click now (the posttool does that for you now).

SF where can I find the new lib_glb_plus?
Thanks
#26
is the folder "D:\Program Files\Steam\steamapps\common\GLBasic_SDK\Compiler\platform\Win64" (on my computer with Win10)
present?
#27
I found it
#28
I think it's just a problem in debugging mode.
if you add a line like:
debug LEN(strFileEntry$)+"\n" you will see the result is 0
#29
hey bigsofty it's sad to hear what happened but i'm happy with your reaction, come on, and we look forward to seeing your work. :booze:
#30
sorry, i confused DOS with GLB command
instead of LOADSPRITE "..\icon.bmp",0
try
LOCAL ok = SETCURRENTDIR("..") // One up level
LOADSPRITE "icon.bmp",0

provided that the bmp file resides in the parent folder