Search found 397 matches

by driesguldolf
Mon 11 Jun, 2007 1:32 pm
Forum: Programming Help
Topic: [VB Express Edition] User control troubles
Replies: 18
Views: 10476

Some more specific stuff about no2: For clearity: private contents() as string private realheight as integer=me.height-horizscroll.height private realwidth as integer=me.width-vertscroll.width Public Sub ValidateStuff() Dim x As Integer VisibleLines = Math.Floor(Realheight / Font.Height) VertScroll....
by driesguldolf
Mon 11 Jun, 2007 1:07 pm
Forum: Programming Help
Topic: [VB Express Edition] User control troubles
Replies: 18
Views: 10476

[VB Express Edition] User control troubles

I am currently making some sort of textbox usercontrol to support additional stuff like syntax coloring, highlithing, error marking and stuff but as you migh have guessed microsoft's in the way Some weird stuff that happens: - When I change the font property in the form designer suddenly the scroll ...
by driesguldolf
Thu 07 Jun, 2007 6:22 pm
Forum: Programming Help
Topic: A quick question
Replies: 5
Views: 5187

Thank you very much for all these very useful links!

Strange tough, I am watching this topic and I don't get email replies telling that a post has been posted...
by driesguldolf
Thu 07 Jun, 2007 8:52 am
Forum: Program Ideas
Topic: Random program techniques
Replies: 3
Views: 9238

Crap, yeah your right, I see it now
well luckily you can still avoid the exx and ex af, af' and because the interupt isn't executed that many times the speed loss when using the stack isn't that great
by driesguldolf
Thu 07 Jun, 2007 7:14 am
Forum: Program Ideas
Topic: Random program techniques
Replies: 3
Views: 9238

Random program techniques

Some stuff I came up with during boring classes: EDIT: The explanations are better now - I was wondering how you can get extra RAM when prgramming apps because the free RAM (not used by the OS) is all scattered and not very large. Maybe you could just use $8000 - $9D95 and quit the app with a "...
by driesguldolf
Wed 06 Jun, 2007 8:03 pm
Forum: Programming Help
Topic: A quick question
Replies: 5
Views: 5187

A quick question

I remember that a time ago I found some software that could make apps (ti83+) of .bin files but i don't know were i found this Does enyone know a good program that converts (tasm's) bin files to .8xk files? I found Dwedit's DevKit but i just know there's another one (think the author was tr1p1ea) So...
by driesguldolf
Sat 26 May, 2007 2:05 pm
Forum: Programming Help
Topic: [TI ASM/pseudo] General algorithms
Replies: 22
Views: 14059

check the pathfinding link a bit higher, he says something about nodes, nodes are used when you don't have a nice width x height map (like in 2d) so the nodes fullfill the purpose of the "tiles" (but you have to tell him wath nodes are linked together, this is obvious with tilemaps) for th...
by driesguldolf
Wed 23 May, 2007 6:45 pm
Forum: Programming Help
Topic: [TI83p-ASM] Come here to worship 83pa28d!
Replies: 25
Views: 16722

Does anyone here has a working email address of sigma? He should really know this stuff (he probabely already knows this, I dunno) because I cannot find any...
by driesguldolf
Wed 23 May, 2007 1:23 pm
Forum: Programming Help
Topic: [TI ASM/pseudo] General algorithms
Replies: 22
Views: 14059

BUG ALERT

I think I found a bug in TI flash debugger: The carry flag is afected when an INC instr is executed (didn't test it with all posible inputs/parameters) Try this program: (this figures the digits of a number (a) and returns a as units, b as tenths and c as hundreds) ;header removed ld a, 23 call deci...
by driesguldolf
Tue 22 May, 2007 4:13 pm
Forum: Programming Help
Topic: [TI ASM/pseudo] General algorithms
Replies: 22
Views: 14059

Thank you VERY much for these VERY useful posts :D I think it might be a good idea to make a sticky post containing information about this stuff ...and pay attention to the way you think... I tried this with a card game, I tought it was a simple one, but man... It's amazing how the human brain handl...
by driesguldolf
Tue 22 May, 2007 10:26 am
Forum: Programming Help
Topic: [TI ASM/pseudo] General algorithms
Replies: 22
Views: 14059

[TI ASM/pseudo] General algorithms

Some problems I couldn't solve and I don't really know where to start: - Does anyone know a good filling algorithm to fill any shaped areas (like the ms paint fill tool)? - How does pathfinding work (through a maze for example)? - Ideas about how to implement a clever AI (not specific, rather what k...
by driesguldolf
Mon 21 May, 2007 10:24 am
Forum: Programming Help
Topic: [TI ASM] Event handler - Problems
Replies: 8
Views: 6741

God bless your knowledge! :worship: thanks very much, I tought interrupts had something to do with the lcd or something... The reason I didn't do OR A was that it's insignificant, but the addition is even better I guess I should combine the event handler with this trick (didn't know it was called vs...
by driesguldolf
Sun 20 May, 2007 7:03 pm
Forum: Programming Help
Topic: [TI ASM] Event handler - Problems
Replies: 8
Views: 6741

...Crap... There's a problem... <points at TI and shouts>WHY THE HELL DID YOU INCLUDE SUCH IDIOTIC LCD SCREEN!!!! <calms down and explains>because the lcd driver needs so much time to be updated and interrupts may not be activated during this process, everything collapses because this eventhandler r...
by driesguldolf
Sat 19 May, 2007 3:18 pm
Forum: Programming Help
Topic: [TI83p-ASM] Come here to worship 83pa28d!
Replies: 25
Views: 16722

It'd be a better solution than the constant bitching that keeps happening about the little errors. Don't missunderstand me, I ow a great deal to that guide (:worship:) but some errors are not small, really it took me 2 days to figure out the bug in the getpixel routine because I expected it to be c...
by driesguldolf
Sat 19 May, 2007 10:37 am
Forum: Programming Help
Topic: [TI ASM] Event handler - Problems
Replies: 8
Views: 6741

I will try to get everything up at ticalc.org when I write a help file on how to use this code (help is always welcome) so I don't need to make lengthy posts :cough: and I can add examples too 2: That's a stack overflow! Congrats! On key caused it because you allowed it to generate interrupt via por...