Search found 5 matches

by rooky06
Mon Mar 15, 2021 1:39 pm
Forum: Coding Questions
Topic: resource files for beginner
Replies: 12
Views: 2675

Re: resource files for beginner

thank you for your explain
by rooky06
Mon Mar 15, 2021 12:12 am
Forum: Coding Questions
Topic: resource files for beginner
Replies: 12
Views: 2675

Re: resource files for beginner

Thank you but i can't understand one thing :
Included text file into the executable
It means that i dont need to extract the source file ?
by rooky06
Sun Mar 14, 2021 5:37 pm
Forum: Coding Questions
Topic: resource files for beginner
Replies: 12
Views: 2675

resource files for beginner

Hello
I searched the internet and found a lot of examples of using resource files with icons and executable information but nothing that deals with a simple text file.
Indeed, I would like to put in resource a simple text file which contains a single line and to be able to extract this content and ...
by rooky06
Tue Mar 09, 2021 1:00 am
Forum: Coding Questions
Topic: ExamineKeyboard(), ExamineMouse() work badly
Replies: 10
Views: 1943

Re: ExamineKeyboard(), ExamineMouse() work badly

Thank you, but I may have explained myself incorrectly. I would just like to know when a click occurs anywhere on the screen and not just on my console or window application because I am learning with the help but when I use the code the mouse pointer disappears from the screen ... the buttons work ...
by rooky06
Mon Mar 08, 2021 4:45 pm
Forum: Coding Questions
Topic: ExamineKeyboard(), ExamineMouse() work badly
Replies: 10
Views: 1943

ExamineKeyboard(), ExamineMouse() work badly

Hello.

I discover PB and try it before to buy the licence.

So i coded it :
OpenConsole()
a=InitKeyboard()
b=InitMouse()
Repeat
ExamineKeyboard()
key$=KeyboardInkey()
Print(key$)

ExamineMouse();
If MouseButton(#PB_MouseButton_Left) <> 0
Print("click")
EndIf

Delay(10)
ForEver
End

I ...