Search found 66 matches

by wallyfblu
May 27, 2008 11:36
Forum: Beginners
Topic: How to use functions from C *.lib files?
Replies: 17
Views: 9601

I've found this in the .lib file :_GridInstall@4
by wallyfblu
May 27, 2008 11:09
Forum: Beginners
Topic: How to use functions from C *.lib files?
Replies: 17
Views: 9601

Hi MichelW, I found this in the MASM source that uses the .lib: GridInstall PROTO :DWORD and I tranlated it into: Declare sub GridInstall Cdecl Alias "GridInstall"(ByVal inst As HINSTANCE) that give me this error: GridDemo.o:fake:(.text+0x51b): undefined reference to `GridInstall' if I rem...
by wallyfblu
May 21, 2008 8:58
Forum: Beginners
Topic: How to use functions from C *.lib files?
Replies: 17
Views: 9601

I tried to use a .lib written in MASM and the problem is the other library used. i.e kernel.lib etc. . There's a way to use this static library or need I the others .lib?
by wallyfblu
May 21, 2008 6:42
Forum: Community Discussion
Topic: Possible Solution to threads like the one that was started.
Replies: 66
Views: 19281

The same for me. It depend what you use FB for.
by wallyfblu
May 21, 2008 6:36
Forum: Community Discussion
Topic: Vagueness of standard tutorials/examples
Replies: 39
Views: 12803

Eclipzer wrote: I personally dislike "foo" and "bar" for the very reasons Eaglon points out. badmrbox wrote: I agree with you there. I agree with you too. I have a lot of effort to learn from non-specific examples and focus what they mean. However I understand the difficult to w...
by wallyfblu
Apr 02, 2008 10:21
Forum: Beginners
Topic: Hel converting!
Replies: 3
Views: 1971

Hi Kenny80, for the first two example you must indicate the variable type you are using.

for the last the right form is:

Code: Select all

Dim As Integer i

If i mod 6 = 0 And i <> 24 Then
	
EndIf
by wallyfblu
Mar 25, 2008 9:14
Forum: Libraries Questions
Topic: Win/Lin GUI API Wrapper Library
Replies: 35
Views: 12172

Hi Oz, I'm also interested in this project.
by wallyfblu
Mar 14, 2008 8:14
Forum: Community Discussion
Topic: QB Express Article Requests
Replies: 37
Views: 21819

Hi Pete, maybe I could write the window proc sequel, if someone like or concern it.
by wallyfblu
Feb 29, 2008 9:14
Forum: Libraries Questions
Topic: Excel Disphelper help
Replies: 253
Views: 66547

hi phishguy, I to run my old excel code in order to try help you, but I had some errors that I don't figure out:

C:/FreeBASIC/inc/win/windef.bi(61) error 3: Expected End-of-Line, found 'ptr'
type PWINBOOL as integer ptr

Maybe some 0.18.3 problems? I never used disphelper after this release
by wallyfblu
Jan 09, 2008 15:49
Forum: Libraries & Headers
Topic: FB ODBC Library
Replies: 25
Views: 28970

I have used this library to connect to a Oracle DB on a linux machine and all querys works fine. With the count statement I have an empty string. I used Oracle Sql Plus for test the query and I receive the right answer Any idea? a piece of code: If DBStmt->Query("select count(*) from udc where ...
by wallyfblu
Dec 13, 2007 15:50
Forum: Libraries & Headers
Topic: FB ODBC Library
Replies: 25
Views: 28970

Hi SamSpade, I'm using 0.18.3 on windows XP and I compile and run it without problems. For my purpose I create two system DSN and used something like this DBLink = New FBODBC.ODBCConnection If DBLink->ConnectDSN("xxxx","yyyy","zzzz") = FALSE Then LST.AddString("Con...
by wallyfblu
Oct 27, 2007 19:58
Forum: Archive
Topic: chiSock FB socket library for Win/Lin
Replies: 64
Views: 50212

Hi all, I've tried the library and it works well, but I needed a Win32 GUI interface and I had this errors when include "windows.bi" C:/FreeBASIC/inc/chisock/socket.bi(151) error 7: Expected ')' in 'byval opaque as any ptr _' C:/FreeBASIC/inc/chisock/socket.bi(156) error 7: Expected ')' in...
by wallyfblu
Sep 04, 2007 6:41
Forum: Windows
Topic: GradientFill function
Replies: 2
Views: 2178

Thanks a lot, I have not searched in the forum about GradientFill. Now I have other problems with that code, but I try to solve myself (maybe) :)
by wallyfblu
Sep 03, 2007 14:23
Forum: Windows
Topic: GradientFill function
Replies: 2
Views: 2178

GradientFill function

I've found example code on the net that use GradientFill function from MSIMG32.DLL library. I haven't found any reference in FB .bi files. I've tried this code to use the function: Dim retlib As HINSTANCE retlib=LoadLibrary("MSIMG32.DLL") If retlib=0 Then MessageBox(NULL,"error",...
by wallyfblu
Aug 22, 2007 15:47
Forum: Beginners
Topic: examples and dll's
Replies: 7
Views: 4200

I have found freetype6.dll in my GTK installation so for me run ok. However you could search on internet to find the missing .dll (for other examples) or look at sticky: links at top of Libraries topic. the library call is in the "freetype2/freetype.bi" file with the statement #inclib &quo...