Search found 260 matches

by oyster
Oct 27, 2008 2:35
Forum: Sources, Examples, Tips and Tricks
Topic: Loading a dll from memory
Replies: 7
Views: 4562

where can I get the code for fb? thanx?
by oyster
Oct 14, 2008 3:10
Forum: General
Topic: how to set the time of directory?
Replies: 3
Views: 1163

how to set the time of directory?

especially in windows. for example SetDirTime("directory", 2008) rem year SetDirTime("directory", 2008,10) rem plus month SetDirTime("directory", 2008,10,14) SetDirTime("directory", 2008,10,14,12) ... SetDirTime("directory", 2008,10,14,12, 12, 12) re...
by oyster
Sep 29, 2008 8:51
Forum: Libraries & Headers
Topic: (Another) FB GUI Project
Replies: 16
Views: 5836

cannot download your files
by oyster
Sep 19, 2008 12:41
Forum: Libraries Questions
Topic: [some ot]tool can shrink DLL?
Replies: 4
Views: 2475

[some ot]tool can shrink DLL?

For many external lib, fb( and python) use only the DLL version, whcih is very big often if we want to release our program. So, is there such a tool that can scan a DLL then strip the unused function's code out, so yields a small working DLL? for example, in my program I use only 'compress' function...
by oyster
Sep 06, 2008 7:36
Forum: Windows
Topic: write ms-word add-in?
Replies: 0
Views: 1021

write ms-word add-in?

During my work, I often write documnets in ms-word. But the doc has many numbers in it, which need to be calculated and to be modified frequently. Is there a method to write a ms-word add-in, so that I can type in the calculation steps in some program language(which is stored in DOC file too, I can ...
by oyster
Jul 04, 2008 4:52
Forum: General
Topic: fluid simulation
Replies: 2
Views: 1282

but how to operate in your program? I found nothing here except grids when I press 'v'
by oyster
Jun 29, 2008 12:14
Forum: Projects
Topic: Explode!
Replies: 14
Views: 3911

why there is no text on the start menu?

I have downloaded and use your patch, but when I compile my own explode.exe by FreeBASIC-v0.18.2b-win32, there is no text on the start menu. However, if I use explode.exe in the patch, everything is ok.

why?
by oyster
Jun 25, 2008 2:43
Forum: Libraries Questions
Topic: wysiwyg html editor lib/dll?
Replies: 3
Views: 1700

thanks, i will have a look at it soon

btw, I found http://www.terrainformatica.com/sciter/main.whtm, but there is no API for other langauge except for C/C++
by oyster
Jun 24, 2008 5:10
Forum: Libraries Questions
Topic: wysiwyg html editor lib/dll?
Replies: 3
Views: 1700

wysiwyg html editor lib/dll?

In one word: I think it could be too hard for me to program from the root, so is there any ready-to-be-used lib/dll for this task? I am in windows os. In details: In fact, what I need is more simple than a completed wysiwyg html editor: there is only text(with no style) and picture in my file. we do...
by oyster
Jan 11, 2008 9:38
Forum: General
Topic: easy way to compile *.bi file to dll?
Replies: 1
Views: 1156

easy way to compile *.bi file to dll?

I found that most of the bi file are more clear than the original C *.h file, so it is some easy to build the library in fbc to a DLL for python/Ruby/.... On the other hand, some library is in fbc source only (for example, fbmath), if I want to use it in python/Ruby/...., a DLL is more workable. But...
by oyster
Jan 08, 2008 12:26
Forum: Windows
Topic: "Text renderer" (or possibly worse)
Replies: 26
Views: 11721

As for render html/xml, http://www.terrainformatica.com/ offers pretty lib. but I think they only for windows, and there is only C interface currently, so the translation is needed. As for webbrowser, how to handle the newwindow2 (popup window) action and redirect the new window to the current one o...
by oyster
Jan 04, 2008 11:55
Forum: Libraries Questions
Topic: some ot: where is the original wx header file for wx.bi
Replies: 4
Views: 1778

some ot: where is the original wx header file for wx.bi

as the title says, where can I download a copy of the original and clear C header file for wxWidget? I have read those from the source on http://www.wxwidgets.org/, but found that they are too complex, on the other hand, wx*.bi in fbc is much clear. I want to try port wxWidget to Python via ctypes, ...
by oyster
Dec 03, 2007 2:55
Forum: General
Topic: how to do static link and dynamic link?
Replies: 5
Views: 2939

D.J.Peters, thanx, it works. but all the exe has the same size(10,752 bytes here) no matter which commandline I used on FreeBASIC-v0.18.2b-win32, and all exe need python25 as you said: fbc.exe test.bas -l staticpython25 -d usestatic=1 or fbc.exe test.bas -l python25 -d usestatic=0 by the way, do you...
by oyster
Dec 03, 2007 1:35
Forum: Windows
Topic: Want to use a static lib into GCC
Replies: 10
Views: 4323

thank you. and there is the full command line

fbc.exe test2.o -l mylib2 -l fbgfx -l user32 -l gdi32
by oyster
Dec 02, 2007 14:16
Forum: Windows
Topic: Want to use a static lib into GCC
Replies: 10
Views: 4323

I met a problem: test1 is ok, but for test2 c:\Downloads\FreeBASIC-v0.16b-win32\fbc.exe test2.o -l mylib2 .//libmylib2.a(mylib2.o):fake:(.text+0xb): undefined reference to `fb_GfxScreen@20' .//libmylib2.a(mylib2.o):fake:(.text+0x35): undefined reference to `fb_GfxLine@36' c:\Downloads\FreeBASIC-v0.1...