Search found 48 matches

by zcbenz
Oct 28, 2008 14:48
Forum: Windows
Topic: Windows GDI and FBGFX
Replies: 6
Views: 2154

The link can meet my needs after some modifying.But still thank you.
by zcbenz
Oct 28, 2008 4:17
Forum: Windows
Topic: Windows GDI and FBGFX
Replies: 6
Views: 2154

dkl wrote:This might help you, no idea if it works, just found it via forum search:
http://www.freebasic.net/forum/viewtopic.php?t=3206&
Thanks very much,it does help a lot.
by zcbenz
Oct 27, 2008 9:52
Forum: Windows
Topic: Windows GDI and FBGFX
Replies: 6
Views: 2154

Please post it, it would be very useful for me.
by zcbenz
Oct 26, 2008 14:55
Forum: Windows
Topic: Windows GDI and FBGFX
Replies: 6
Views: 2154

Windows GDI and FBGFX

Is there any way to combine Windows GDI and FBGFX?Such as drawing images in an imagelist on the screen,using textout to draw Unicode characters,using GFX buffer as an animation box on the window,ect.
by zcbenz
Oct 18, 2008 9:25
Forum: Windows
Topic: Need help with Comboboxex
Replies: 0
Views: 1404

Need help with Comboboxex

Here is part of my code: #Include Once "windows.bi" #Include Once "win/commctrl.bi" '---------------------------- Type cCLASS Declare Sub Create(nnName As String,nproc As Any Ptr) Name As String Proc As Any Ptr End Type Sub cCLASS.Create(nnName As String,nproc As Any Ptr) Dim wc ...
by zcbenz
Oct 02, 2008 8:39
Forum: Beginners
Topic: Need help with OOP
Replies: 5
Views: 1675

Better than nothing,thanks for your help
by zcbenz
Oct 02, 2008 6:17
Forum: Beginners
Topic: Need help with OOP
Replies: 5
Views: 1675

Another quetion:when defining lots of objects,sometions the different objects are not completely different,some of their propertys maybe the same,must I copy the same code again and again? for example : Type a Declare Property a() Declare Property x() Declare Property y() End Type Type b Declare Pro...
by zcbenz
Oct 01, 2008 14:03
Forum: Beginners
Topic: Need help with OOP
Replies: 5
Views: 1675

Thanks a lot!
by zcbenz
Oct 01, 2008 13:06
Forum: Beginners
Topic: Need help with OOP
Replies: 5
Views: 1675

Need help with OOP

I'm writing a small GUI library,here is part of my code: #Include once "windows.bi" Type cEDIT Declare Constructor(x As Integer, y As Integer, width As Integer, height As Integer, parent As HWND, dwStyle As Dword = NULL) hwnd As HWND x As Integer y As Integer width As Integer height As Int...
by zcbenz
Aug 31, 2008 0:28
Forum: General
Topic: Duplicated definition between headers
Replies: 6
Views: 1616

Thanks again,this tip is very useful.
by zcbenz
Aug 30, 2008 23:12
Forum: General
Topic: Duplicated definition between headers
Replies: 6
Views: 1616

It works well,thanks.
But what does "#define __crt_string_bi__" mean?
by zcbenz
Aug 30, 2008 22:38
Forum: General
Topic: Duplicated definition between headers
Replies: 6
Views: 1616

I have tried, but to get the same errors.

Try:

Code: Select all

#Include Once "chisock\chisock.bi"
#Include Once "win\shlwapi.bi"
by zcbenz
Aug 30, 2008 15:02
Forum: General
Topic: Duplicated definition between headers
Replies: 6
Views: 1616

Duplicated definition between headers

When writing a programme using both WIN32API and chisock library,I got a lot of duplicated definition errors form the Compiler.Then I took a look at the source code of both win\shlwapi.bi and crt\string.bi,I found that a lot of functions are duplicated,such as StrCat,StrCSpn, StrPBrk,ect. Must I mod...
by zcbenz
Aug 30, 2008 12:48
Forum: General
Topic: Need help with chisock
Replies: 14
Views: 3439

Thanks for your help,I have learnt a lot.
by zcbenz
Aug 30, 2008 7:39
Forum: General
Topic: Need help with chisock
Replies: 14
Views: 3439

Hard wrote:you should send a emthy string and then you gonna receive the next part of the data ;)
I don't understand,how to do it?