Search found 9 matches

by dbracken
Wed Feb 02, 2011 12:07 am
Forum: Compiler
Topic: Windows 7 install problem
Replies: 5
Views: 3194

Mark, I bought my licence a few months after yourself. I received version 2.0.0.2. I've installed this on a new Win 7 pc and compiled a random sample without issue. I started the online update process and upgraded to 2.2.0.5. I've picked a few samples and they also compile without issue. Do you have...
by dbracken
Sun Jan 02, 2011 9:31 pm
Forum: Compiler
Topic: Need help compiling an example
Replies: 21
Views: 12298

Malcolm, A few things. Just wanted to check that the ethernet card is connected to port C via the bottom left connector. The example code on the card's page (http://www.mikroe.com/eng/downloads/get/44/serial_ethernet_board_examples.zip) is for an 16F877A (mentioned in a pbp file). Jumper 1 on the ca...
by dbracken
Tue Dec 28, 2010 1:37 pm
Forum: Compiler
Topic: Code Run from External EEPROM/RAM possible?
Replies: 13
Views: 7482

On the lower end 18F series, would a boot loader concept be of help? This is obviously more applicable to eeprom/external flash type memory. That said, I've not tried it, it's just an idea.
by dbracken
Sun Sep 12, 2010 12:09 pm
Forum: General
Topic: Welcome Back!
Replies: 14
Views: 10554

David,
It's *really* good to see you on the forum again.

Dave.
by dbracken
Tue Jul 20, 2010 2:00 pm
Forum: General
Topic: SF and the future
Replies: 57
Views: 77453

Blackcattech, You are correct in that some domain registrars have a period of time before putting the domain back into the affray but sounds more like the domain registrar hasn't yet received the funds. I must admit that I've not seen mine display this status for such a period. The good news is that...
by dbracken
Thu Jul 15, 2010 1:38 pm
Forum: General
Topic: SF and the future
Replies: 57
Views: 77453

CharlieM's quote really does not bode well for the future as once let down by a supplier, customers tend not to give second chances. Developers on this forum will probably be considering which horse to back and I'd almost go as far as putting money on that once they jump ship, they won't return for ...
by dbracken
Sun Jul 11, 2010 8:03 pm
Forum: General
Topic: Has David Given Up On SF?
Replies: 18
Views: 14183

The domain is up for renewal on Saturday. Let's see if we have a forum next Sunday.
by dbracken
Wed Apr 21, 2010 9:45 pm
Forum: Compiler
Topic: For Next loop with negative value as the Step feature-ette
Replies: 3
Views: 2652

Jerry,
Thanks for the quick reply. Yes, I agree, I'd normally use a Byte for such values but was quite surprised to see the behaviour when declared as an int.

Cheers.

Dave.
by dbracken
Wed Apr 21, 2010 8:30 pm
Forum: Compiler
Topic: For Next loop with negative value as the Step feature-ette
Replies: 3
Views: 2652

For Next loop with negative value as the Step feature-ette

Folks, I can't seem to use the Step component of a For Next loop with a negative value if the loop variable is declared as an integer. A While .. Wend loop performing the same task works as expected. For the following code snippet Dim i as integer For i=20 To 0 step -1 DelayMS (300) MoveCursor(1,1) ...