Search found 603 matches

by VirusScanner
Nov 19, 2005 20:34
Forum: General
Topic: Registers
Replies: 4
Views: 1204

What kind of registers? For processor registers you can use inline asm

Code: Select all

asm
    ' My asm code goes here
end asm
but you can't delete them. They're built into the processor.
by VirusScanner
Nov 06, 2005 19:53
Forum: General
Topic: Print CHAR$ or INTEGER or STRING
Replies: 3
Views: 1509

Try a macro:

Code: Select all

#define APRINT(a,b,c,d) COLOR a : LOCATE b,c : PRINT d

APRINT(1,1,1,1)
APRINT(4,4,4,"Hi")
Edit: I forgot about overloaded functions. Well, take your pick.
by VirusScanner
Oct 29, 2005 22:43
Forum: Windows
Topic: dialog boxs
Replies: 24
Views: 8590

No, there is no "InputBox" API function. But look through the windows API documentation. Making an InputBox function would be a good place to start learning actually.
by VirusScanner
Oct 29, 2005 22:29
Forum: Windows
Topic: How do i link in a C .o etc??
Replies: 10
Views: 4463

Could you post the declaration of the function in C?
by VirusScanner
Oct 27, 2005 23:28
Forum: Windows
Topic: GTK Error
Replies: 2
Views: 1660

You need a .a file, I think. It should be the same as the output from ld (the one starting with -l) except the -l should be changed to lib. So for example, if it complained about not finding -laup you should make an import library from the DLL called libaup.a although I'm not sure how you do this wi...
by VirusScanner
Oct 23, 2005 21:07
Forum: Beginners
Topic: Cross compiling
Replies: 35
Views: 8832

XBox is supported (-target xbox I think), but MS made the XBox only able to run apps signed by them. So you have to mess with the hardware in order to make it work properly. Unless you have one of those manuals on hacking the xbox and are really intending on writing something useful, you probably sh...
by VirusScanner
Oct 21, 2005 22:15
Forum: Archive
Topic: Computer Advance Construct-Updated
Replies: 31
Views: 12903

This is a very cool program, it's fun to be able to make languages. However, I have a couple suggestions: - The browser doesn't work quite correctly when resized. Some of it goes off screen. I calculate the window's client rectangle using API functions for this and then set it. - The status bar has ...
by VirusScanner
Oct 21, 2005 22:10
Forum: Projects
Topic: Peer-To-Peer Serverless Multi-User Internet Chat Conferencer
Replies: 58
Views: 34119

The fileanchor link works now. Cool program, but I use a DSL modem so I can only connect to computers in the network. I'd have to set up forwarding which I don't know how to do.
by VirusScanner
Oct 21, 2005 0:43
Forum: Projects
Topic: Peer-To-Peer Serverless Multi-User Internet Chat Conferencer
Replies: 58
Views: 34119

Sorry, File anchor still not working :(. I wish it was though.
by VirusScanner
Oct 20, 2005 15:10
Forum: Projects
Topic: Peer-To-Peer Serverless Multi-User Internet Chat Conferencer
Replies: 58
Views: 34119

File anchor isn't working for me... I get a download to a blank file called '6951-d', not a chat program.
by VirusScanner
Oct 15, 2005 22:36
Forum: Sources, Examples, Tips and Tricks
Topic: Thing I whipped up today:
Replies: 26
Views: 15437

If you want to add your own proc, here's an idea (used in another basic-type language as part of the built in lib) -When you create the window, you specify your "handler" for events. -The OPENWINDOW function fills a WINDOW UDT for you that has a bunch of information stored to make your lif...
by VirusScanner
Oct 15, 2005 18:30
Forum: Sources, Examples, Tips and Tricks
Topic: Thing I whipped up today:
Replies: 26
Views: 15437

You may want to (if you haven't already), provide a way to use HookEvent for rare events like WM_NCPAINT, where you'd just add the constant to be hooked (I don't mean add a new one called FBGui.NCPaint or something, just the ability to do these)
by VirusScanner
Oct 15, 2005 18:07
Forum: Sources, Examples, Tips and Tricks
Topic: Use "AND" for combining flags instead of "OR&
Replies: 14
Views: 4906

It may seem more logical, but I'd be careful using that method, because many programmers are used to using OR (or |) and will be confused by your method. You may want to take a poll asking who prefers and is used to which method before you use it... but it's really all up to you. Just my opinion. Wh...
by VirusScanner
Oct 10, 2005 23:15
Forum: Community Discussion
Topic: GC - Win32 GUI Creator
Replies: 31
Views: 12793

What about owner draw? I know buttons can be owner draw, and since checkboxes are a type of button, it should be possible.
by VirusScanner
Oct 09, 2005 23:10
Forum: Community Discussion
Topic: GC - Win32 GUI Creator
Replies: 31
Views: 12793

Looks good! I'd suggest adding a code editor (just a simple window) with some defined segments of code that get injected into the bas file on compile.