Search found 30 matches

by D'Oldefoxx
Thu Sep 18, 2003 10:32 pm
Forum: Coding Questions
Topic: # prefix
Replies: 5
Views: 1700

How about in the Index though?

The obvious place to find something when you know what it is, symbol-wise, is to look in the index. Unfortunately, none of the symbols can be found there. I didn't say that the Help files were "bad", but in the absence of a good manual, they have to do double shift -- simething they are not quite up ...
by D'Oldefoxx
Wed Sep 17, 2003 6:32 pm
Forum: The PureBasic Editor
Topic: Continuation line for source file
Replies: 47
Views: 33055

Now see, you haven't unserstood my point at all

On one hand, someone advocated breaking up words by allowing spaces or
returns to be placed in them (at least that is what his example showd). I. on the other hand, pointed out that a line continuation symbol was needed in order to allow lines, rather than words, to lap over to other lines. That is ...
by D'Oldefoxx
Thu Sep 04, 2003 4:57 pm
Forum: General Discussion
Topic: Who Does Windows?
Replies: 3
Views: 1789

Hi James

Hi James,

You want that code direct or posted?
by D'Oldefoxx
Thu Sep 04, 2003 5:33 am
Forum: General Discussion
Topic: Who Does Windows?
Replies: 3
Views: 1789

Who Does Windows?

I'm having trouble getting it together the statements for building a window with a list gadget and various string gadgets. The only sample code I found that seem to relate was the one for a Passowrd Input box, but when I try extend it, I generally clobber the preliminary text in the input boxes ...
by D'Oldefoxx
Thu Sep 04, 2003 4:38 am
Forum: General Discussion
Topic: Getting a Console Screen Capture
Replies: 3
Views: 1737

Thanks, Timo

Thanks, Time. I grabbed the code at the link youprovided. But actually, I'm isomewhat interested in how to make the Console feature more robust. O seem some Windows APIs for Console, but hard to say if any of that can work within the pureBasic environment. I just figured someone would have played ...
by D'Oldefoxx
Tue Sep 02, 2003 11:08 pm
Forum: Tricks 'n' Tips
Topic: multiply(a,b)
Replies: 7
Views: 3563

Integer Mujltiply

Internally, the CPU does shift and add for each integer multiply operation. It also does the reverse for divide, which is shift and trial subtracts, which are going to take longer since you multiply two 16-bit or 32-bit values together, but you divide a 32-bit value by 16 bits, or a 64-bit value by ...
by D'Oldefoxx
Sat Aug 30, 2003 10:18 pm
Forum: Feature Requests and Wishlists
Topic: Multiple PB Windows Latch Together
Replies: 1
Views: 1429

Multiple PB Windows Latch Together

I wonder if it would be reasonable to take the several PV Windows, such as the IDE, the side panel, the debug windows, the ASM register window, and the Variable watch window and somehow latch them together so that they can optionally do the following:

(1) Retain the same relative positions as last ...
by D'Oldefoxx
Thu Aug 28, 2003 5:24 pm
Forum: General Discussion
Topic: Check for eMail from any/all accounts
Replies: 3
Views: 3070

I Appreciate the Offer

Thank you for your generous offer. Actually, I am more interested in source code to help me learn some of the capabilities and tricks of the trade. I have already found that just the bit I wrote is sufficient for my purposes - I made s small change so that I put a MessageRequester() if if I have any ...
by D'Oldefoxx
Thu Aug 28, 2003 12:44 am
Forum: Coding Questions
Topic: CPU utilization
Replies: 21
Views: 6700

Esperience is the best teaher.

If you can get to 100% and not find any downside to your efforts, then why not. But pushing foreground operations at the cost of your background functions is problematic. Finetuning the results then becomes somewhat difficult, unless you have tools for that purpose. A good memory manager, like ...
by D'Oldefoxx
Wed Aug 27, 2003 6:29 pm
Forum: Coding Questions
Topic: CPU utilization
Replies: 21
Views: 6700

CPU Usage

Most PCs only have one CPU (Central Processing Unit, or the "brains" of the comuter) which has to do all the work, even in a multi-tasking environment where several programs (or applications) are running at once. IIf you open up the Tasl Manager (use Ctrl+Alt+Del) and then pick Processes, you will ...
by D'Oldefoxx
Wed Aug 27, 2003 5:56 pm
Forum: Coding Questions
Topic: really newbie question : does PB functions faster than API ?
Replies: 2
Views: 1207

What does What?

I think that if you look at the Help file, you can get some idea of which commands rely on either Windows API or DirectX calls, because those commands will indicate that they are only available under Windows. For
commands that span more than one operating system, either Fred did a roll-your-own ...
by D'Oldefoxx
Wed Aug 27, 2003 5:50 pm
Forum: Coding Questions
Topic: Please help me to figure out the problem
Replies: 9
Views: 3173

Pardon Me

My comments were not really with regards to this specific program, but to the larger audience looking to learn how to handle data in text files. I did not try to analyze your code in terms of finding where your problem was, but just focused on your use of Repeat where I thought a While Eof(1)=0 ...
by D'Oldefoxx
Mon Aug 25, 2003 3:39 am
Forum: Coding Questions
Topic: Downloading from www.purebasic.org
Replies: 4
Views: 2235

You are both Right, of course!

Yep, my mistake, I started at www.purebasic.org, then ended up at www.purearena.net, which is where I found the large selection of code. But I was tired, so it didn't sink in at the time. I had previously downlaoded the whole archive, but when I extracted it, I got the 8.3 filenames, not the long ...
by D'Oldefoxx
Fri Aug 22, 2003 11:09 pm
Forum: General Discussion
Topic: Faxing in PureBasic
Replies: 17
Views: 5777

Another thought

Rather than focus on this as a PureBASIC issue, look at this as a Fax modem issue. That is, it may be that the CD that comes with a fax modem has some development software on it, with examples on how to call the DLLs in various languages like C or VisualBASIC. And it may be that the vender will have ...
by D'Oldefoxx
Fri Aug 22, 2003 11:02 pm
Forum: General Discussion
Topic: HELP! read/write XLS file but dont delete!?
Replies: 3
Views: 2683

File System

Under the NTFS file system, there are advanced file rights management and true ownership tracking. This would pertain to WinNt, 2000, and XP systems with NTFS installed. Under FAT file structures, you only have flags for archive, read only, hidden, and system files. The operating system merely ...