Search found 239 matches

by SebMcClouth
Thu Aug 04, 2005 3:48 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Input handler
Replies: 3
Views: 5892

I tried sumfin diffrent but I need one more multiple key for the moment.

How can I get Alt-tab to work witht the CHR$?

grtz
Seb
by SebMcClouth
Thu Aug 04, 2005 11:15 am
Forum: QBASIC and QB64 Questions & Answers
Topic: controversy free question: DSOCK + DOS?
Replies: 11
Views: 12447

Probably this code can be found in the near future (probably before the end of this year) in qbinux... By that time I gonna do some beta testing on it for home-networking... if that works... we might gonna see qbinux hooking up to the internet... through text-mode or if we reach version 1.0.0 before...
by SebMcClouth
Wed Aug 03, 2005 11:47 pm
Forum: News and Announcements
Topic: CHALLENGE: Timezone calculator.
Replies: 50
Views: 77109

Just to be nice... version 8 of UTC.bas (as I have named it): '(C) 2005, by Sebastian McClouth DECLARE FUNCTION GA$ (Value AS STRING) DECLARE FUNCTION Milit$ (Value AS STRING) DECLARE FUNCTION CC$ (Value AS INTEGER) CLS LOCATE , 20: PRINT "Universal TimeZone Calculator" LOCATE , 20: PRINT ...
by SebMcClouth
Wed Aug 03, 2005 11:40 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Compile during runtime
Replies: 13
Views: 13248

How I compile it like the ide does??

grtz
Seb
by SebMcClouth
Wed Aug 03, 2005 11:38 pm
Forum: News and Announcements
Topic: CHALLENGE: Timezone calculator.
Replies: 50
Views: 77109

This is one of the reasons why it is good to have an old laptop as programpc: you can read here and program on the other... The problem as you state... must be sumfin wrong in my math... I did several re-runs and found out that where there had to be - there was a +. Timezone calculator updates: nr ...
by SebMcClouth
Wed Aug 03, 2005 11:43 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Compile during runtime
Replies: 13
Views: 13248

Ah okay thx...

Can I compile it like this:

Code: Select all

shell "bc /o myfile.bas,,;"
shell "link myfile.obj,,,path_to_bcom45.lib sumfin.lib ;"
Grtz

Seb
by SebMcClouth
Wed Aug 03, 2005 10:31 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Compile during runtime
Replies: 13
Views: 13248

What if I have to compile a file that needs a library... for example:

Code: Select all

'$include:'sumfin.bi'
grtz?
by SebMcClouth
Wed Aug 03, 2005 9:59 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Compile during runtime
Replies: 13
Views: 13248

That's all??

grtz
Seb
by SebMcClouth
Wed Aug 03, 2005 7:07 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Compile during runtime
Replies: 13
Views: 13248

Compile during runtime

Heheheh... yes I need to perform this action... I'll draw the scene for ya: I'm running my code which could be installing another program... Now I want my program to able to compile a program (.bas) as well as a library. How can I achieve this if I have the needed qb-files along with it? BTW You cou...
by SebMcClouth
Wed Aug 03, 2005 3:52 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Input handler
Replies: 3
Views: 5892

Good new for me: I program at a pure dos system. I still find that to be the best way to program.

Thx for the hints.

grtz
Seb
by SebMcClouth
Wed Aug 03, 2005 1:25 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Input handler
Replies: 3
Views: 5892

Input handler

I've visited several newsgroups, but neither one of them can really help me.

I need a key handler that can handle single and multiple keys e.g. tab, alt-tab, space, F12, up and down and left and right (arrows). If they are recognized the program has to perform a certain action.

grtz
Seb
by SebMcClouth
Wed Aug 03, 2005 1:10 am
Forum: News and Announcements
Topic: CHALLENGE: Timezone calculator.
Replies: 50
Views: 77109

hows mine working now??

grtz
by SebMcClouth
Mon Aug 01, 2005 1:57 pm
Forum: News and Announcements
Topic: qbinux
Replies: 140
Views: 313478

Updates on qbinux: The new version will be a setup file, containing a tiny core, the complete core compressed, and ofcourse the setup-routines to install qbinux. I hope to have a working version by the end of this week. Shell (okay not a real shell but similar to Bash): QBash is going to some build...
by SebMcClouth
Mon Aug 01, 2005 1:51 pm
Forum: News and Announcements
Topic: CHALLENGE: Timezone calculator.
Replies: 50
Views: 77109

Okay... back.. I think I found the bug... My mathematics part... I rewrote (not rebuild) it... (Back the the drawing table hehehe)... I wrote all the math down on a paper and started from scratch with that... A tiny adjustment... and voila: '(C) 2005, by Sebastian McClouth DECLARE FUNCTION GA$ (Valu...
by SebMcClouth
Mon Aug 01, 2005 1:01 pm
Forum: News and Announcements
Topic: CHALLENGE: Timezone calculator.
Replies: 50
Views: 77109

Minor problem... I can't fix yet... I'm trying it with some other code I've coded... Darn... It should have worked just fine... Well... back to the drawing table...

grtz
Seb
by SebMcClouth
Sat Jul 30, 2005 12:01 am
Forum: News and Announcements
Topic: CHALLENGE: Timezone calculator.
Replies: 50
Views: 77109

Okay, fixed some more... You try this one... hope it works... '(C) 2005, by Sebastian McClouth DECLARE FUNCTION GA$ (Value AS STRING) DECLARE FUNCTION Milit$ (Value AS STRING) DECLARE FUNCTION CC$ (Value AS INTEGER) CLS LOCATE , 20: PRINT "Universal TimeZone Calculator" LOCATE , 20: PRINT ...
by SebMcClouth
Fri Jul 29, 2005 4:36 am
Forum: News and Announcements
Topic: CHALLENGE: Timezone calculator.
Replies: 50
Views: 77109

Your first version worked fine for calculating the time at the TO timezone. Now, with your new (simplified) logic, there's problems. Do some additional testing. I've testing it several times... it seemed to work... Reason why I used the simplified is because I had trouble calculating the date adjus...
by SebMcClouth
Wed Jul 27, 2005 11:40 pm
Forum: News and Announcements
Topic: CHALLENGE: Timezone calculator.
Replies: 50
Views: 77109

moneo wrote:2) You didn't validate the input timezones. That's your choice, but it can produce some strange output.

3) You didn't validate the input time (hh:mm). Ditto.
I'm gonna work on these two. And while I'm add it, I'm gonna implent in my core code.

grtz

Seb
by SebMcClouth
Wed Jul 27, 2005 11:36 pm
Forum: News and Announcements
Topic: CHALLENGE: Timezone calculator.
Replies: 50
Views: 77109

Bit later but I actually rewrote the whole math part... Now it doesn't calculate back to GMT anymore but straight to the desired Timezone, and because of this I was able to rewrite the dateadjust code... Here goes: '(C) 2005, by Sebastian McClouth DECLARE FUNCTION GA$ (Value AS STRING) DECLARE FUNCT...
by SebMcClouth
Wed Jul 27, 2005 3:03 am
Forum: News and Announcements
Topic: CHALLENGE: Timezone calculator.
Replies: 50
Views: 77109

I'll work on it some more later today. I'll probably have a working version 2night, which I'll post then.

Till then.

grtz
Seb