@VANYA, Thanks. Let me check.
@ adeyblue, Thanks, Let me check. Yeah, syntax looks weird.
@caseih, Thanks.
Search found 183 matches
- Jan 12, 2021 13:43
- Forum: Beginners
- Topic: What is the FB equivalent to Vector in C++ ?
- Replies: 4
- Views: 201
- Jan 11, 2021 19:11
- Forum: Beginners
- Topic: What is the FB equivalent to Vector in C++ ?
- Replies: 4
- Views: 201
What is the FB equivalent to Vector in C++ ?
Hi all,
I just went through FB Wiki pages and found "C/C++ vs. FreeBASIC syntax comparison". But i couldn't find anything related to vector. What is the FB equivalent to Vector in C++ ? Thanks in advance. :)
I just went through FB Wiki pages and found "C/C++ vs. FreeBASIC syntax comparison". But i couldn't find anything related to vector. What is the FB equivalent to Vector in C++ ? Thanks in advance. :)
- Jun 07, 2020 21:53
- Forum: Projects
- Topic: FreeBasic IDE-poseidonFB(Update 2020.07.20)
- Replies: 1080
- Views: 190063
Re: FreeBasic IDE-poseidonFB(Update 2020.06.05)
@Kuan Hsu,
Thanks for the reply. I will check it. :)
Thanks for the reply. I will check it. :)
- Jun 07, 2020 15:05
- Forum: Projects
- Topic: FreeBasic IDE-poseidonFB(Update 2020.07.20)
- Replies: 1080
- Views: 190063
Re: FreeBasic IDE-poseidonFB(Update 2020.06.05)
Hi @Kuan Hsu,
Any activities in PoseidonD ? Is there any updates ?
Any activities in PoseidonD ? Is there any updates ?
- Dec 13, 2019 13:17
- Forum: Windows
- Topic: How to get the message time from message structure ?
- Replies: 9
- Views: 1137
Re: How to get the message time from message structure ?
Thank you everyone for the replys. :) Sorry for the late reply.
- Nov 28, 2019 8:21
- Forum: Windows
- Topic: How to get the message time from message structure ?
- Replies: 9
- Views: 1137
Re: How to get the message time from message structure ?
@SARG ,
Thanks for this reply. Let me try. :)
Thanks for this reply. Let me try. :)
- Nov 27, 2019 15:55
- Forum: Windows
- Topic: How to get the message time from message structure ?
- Replies: 9
- Views: 1137
How to get the message time from message structure ?
Hi all, Forgive me if this question is already asked. I would like to know how to get the message time from the MSG structure in win32 Gui programming ? I just tried this in the " GetMessage" function. But since, it's a DWORD, i only get big number. TranslateMessage(imsg) DispatchMessage(i...
- Nov 24, 2019 16:05
- Forum: Windows
- Topic: How to implement mouse single click & double click events
- Replies: 2
- Views: 472
Re: How to implement mouse single click & double click events
@paul doe ,
Thanks. :)
Thanks. :)
- Nov 23, 2019 15:52
- Forum: Windows
- Topic: How to implement mouse single click & double click events
- Replies: 2
- Views: 472
How to implement mouse single click & double click events
Hi all, I am playing with some win32 api gui code. Now, i would like to create a mouse click & double click event for my gui library. I've read that one would need to deal with four type of mouse messages to implement this feature. For a single click - WM_LBUTTONDOWN WM_LBUTTONUP And for a doubl...
- Oct 19, 2019 22:33
- Forum: Documentation
- Topic: How and Why to make Abstraction by Object Encapsulation, with FB Syntax in UDTs (basics)
- Replies: 19
- Views: 4610
Re: How and Why to make Abstraction by Object Encapsulation, with FB Syntax in UDTs (basics)
I quit freebasic coding for about two years. But when i came back, what i can see is such great posts and comments. I feel sad that it's too late to read this. Thanks for this post.
- Oct 22, 2018 20:44
- Forum: Windows
- Topic: OWNER DRAW Button painting problem
- Replies: 3
- Views: 654
Re: OWNER DRAW Button painting problem
@jj2007, At last, I found the problem !! It was the second parameter of the InvalidateRect() function. In wm_mousemove and wm_mouseleave msgs, i call this IvalidateRect with second parameter as "NULL". After a long time virtual debugging, i found that it accepts the rect of the control. No...
- Oct 22, 2018 20:18
- Forum: Windows
- Topic: OWNER DRAW Button painting problem
- Replies: 3
- Views: 654
Re: OWNER DRAW Button painting problem
@jj2007, To be frank, I think i dont know. My drawing function takes only one parameter. It is an LPDRAWITEMSTRUCT . I know that the struct contains an hwndItem member. here is the pseudo code of this drawing function for clarity. 1. CButton is a User Defined Type. (Lets say a class) 2. This class h...
- Oct 22, 2018 15:57
- Forum: Windows
- Topic: OWNER DRAW Button painting problem
- Replies: 3
- Views: 654
OWNER DRAW Button painting problem
Hi all, I have two owner draw buttons. (lets say ODB ) I am using WM_DRAWITEM message to paint these buttons. this is the pseudo code if mouse is entered on the ODB invalidate the ODB if mouse leave from ODB invalidate the ODB In the WM_DRAWITEM message, i handled the drawing like this - if mouse is...
- Oct 22, 2018 14:13
- Forum: Windows
- Topic: How to get notified when mouse enter controls
- Replies: 3
- Views: 815
Re: How to get notified when mouse enter controls
@Pierre Bellisle ,
Thanks for the reply. Thats a great help for me. Really a good workaround for TrackMouseEvent.
Thanks for the reply. Thats a great help for me. Really a good workaround for TrackMouseEvent.
- Oct 21, 2018 13:21
- Forum: Windows
- Topic: How to get notified when mouse enter controls
- Replies: 3
- Views: 815
How to get notified when mouse enter controls
Hi all, In my gui code, I have subclassed all controls and used TrackMouseEvent function in order to get notified when mouse enters on all controls. So this is my question, is there any better method to get notified mouse enter and mouse leave events without using TrackMouseEvent function ? Thanks i...