Search found 84 matches

by etko
Jul 29, 2009 16:43
Forum: DOS
Topic: Packet driver TCP/IP stack
Replies: 16
Views: 13697

I had FreeDOS box talking with my OpenBSD's dhcp server. Installing packet driver and stuff was straithforward, I tried trumpet TCP ABI. DOS IRC client in QB but that was all that time allowed me to do. Next free slot I will look into interfacing with FB. Sidenote DOS TCP/IP is really messy.
by etko
Jul 29, 2009 16:26
Forum: Hardware Interfaces / Communication
Topic: more then one mouse?(closed)
Replies: 9
Views: 4926

MultiPoint is useless Microsoft .NET crap loaded over much lower level MS API: RawInput This API has access to all connected input devices to machine. PS/2 devices end up in same pool with USB ones. Altough cursor and keyboard input is shared device, thus any mouse will move single cursor, if I reme...
by etko
Jul 29, 2009 15:48
Forum: Community Discussion
Topic: Is QB Express already dead?
Replies: 68
Views: 18986

why not create full fledged CMS site for QB/FB Express, I believe it would become much more manageable.
by etko
Jun 09, 2009 13:07
Forum: DOS
Topic: HTTP library
Replies: 10
Views: 5156

Something new about this?
I have packet driver working on my DOS box and OpenBSD assigns IP address using BOOTP nicely to trumpet's stack.
I would like to try wattcp32 with FB.
by etko
Jun 09, 2009 12:37
Forum: Community Discussion
Topic: Building FreeBASIC on OpenBSD
Replies: 39
Views: 12237

Cool. What language did you use to compile it? Is this supposed to be real question? Runtime library is written in C, compiler is written in FB itself. Check out DrV's tutorial for compiling on OpenBSD, it worked for me. It is well written. I would like to see some compiler maintainers looking more...
by etko
Apr 27, 2009 3:08
Forum: Community Discussion
Topic: Building FreeBASIC on OpenBSD
Replies: 39
Views: 12237

I just wanted to report, that I managed to compile current SVN on my X-less OpenBSD server/firewall. There was sligth problem With WITH_X directive, so far FBC is working on simple hello worlds etc.
by etko
Aug 19, 2008 15:22
Forum: Documentation
Topic: fbdoc exporter
Replies: 3
Views: 4037

Thank you all very much for your input I'll look into it.
by etko
Aug 14, 2008 14:56
Forum: Documentation
Topic: fbdoc exporter
Replies: 3
Views: 4037

fbdoc exporter

Hi guys,

from search I concluded you use fbdoc exporter to generate chm files. Is there more info on this tool or its source code? Where can I get it? I would like to experiment with wiki as help file authoring tool in same way as you are, and automatically generate the chm. Thx for the reply.
by etko
Jan 02, 2008 14:13
Forum: DOS
Topic: continued DOS FreeBASIC support -- thanks!
Replies: 12
Views: 7934

I would like to thank you for the amazing DOS support too.
by etko
Aug 21, 2007 13:44
Forum: Windows
Topic: Can an exe export functions same as a dll?
Replies: 10
Views: 5328

Maybe you have problem with name mangling or what. FB is not in reality very windows friendly regarding function exports. Download DependencyWalker open your EXE, with that you can check what functions got exported and how. DLL, SYS, OCX, ACM, SCR or EXE have the same PE file format on windows. If y...
by etko
Jun 29, 2006 19:32
Forum: General
Topic: URGENT: Text strings in program visible in compiled EXE!!!!
Replies: 12
Views: 4320

1.) Several links about this: VB Sample C net code example some QB abc packets 2.) I don't know about this, maybe packing with upx will be enough for you. Anyway there is no way for you to encrypt the strings reliably, any encryption can be broken sooner or later if you have access to the program im...
by etko
Jun 29, 2006 19:13
Forum: General
Topic: URGENT: Text strings in program visible in compiled EXE!!!!
Replies: 12
Views: 4320

Hehe, this is normal, you can find text string even in normal windows programs. Easiest way you can encrypt string is to use XOR method it's quite easy and fast. However any only bit experienced hacker will be able to decrypt these strings.
by etko
Mar 20, 2006 19:57
Forum: DOS
Topic: Packet driver TCP/IP stack
Replies: 16
Views: 13697

I would like to get full TCP/IP stack, when I'll get some more time i will try to look at that WATTCP.
by etko
Mar 11, 2006 5:06
Forum: DOS
Topic: Packet driver TCP/IP stack
Replies: 16
Views: 13697

Packet driver TCP/IP stack

Hi is there any way to use TCP/IP in DOS FreeBASIC? I've heard that there is some TCP/IP stack supporting packet driver for DJGP or what the name of DOS GCC is.
by etko
Mar 11, 2006 4:23
Forum: Beginners
Topic: very simple question
Replies: 12
Views: 3892

32-bit processors from pIII up are able to use something like 36 TB or like that of memory, when you enable special segmented mode. It's kinda like 16 bit real mode, instead it's 32 bit segmented pmode ;). But there are segments & offsets so all that segment offset stuff returns. However I guess...