
Search found 52 matches
- Wed May 02, 2007 6:03 pm
- Forum: Coding Questions
- Topic: DATE issues (solved) but BUG uncovered!
- Replies: 13
- Views: 3016
- Mon Apr 30, 2007 10:53 pm
- Forum: Coding Questions
- Topic: DATE issues (solved) but BUG uncovered!
- Replies: 13
- Views: 3016
The problem is that the variable 'd' is first used to store the value of the selected date, then it is used almost immediately after to store the day value of that date. The subsequent calls to get values for 'h', 'i', and 's' are then going to be incorrect. See the following:
OpenWindow(0,0,0,200 ...
OpenWindow(0,0,0,200 ...
- Fri Apr 27, 2007 5:52 pm
- Forum: Tricks 'n' Tips
- Topic: [OOP] Interface IEMAIL for sending mails.
- Replies: 5
- Views: 3311
- Tue Apr 24, 2007 10:41 pm
- Forum: Coding Questions
- Topic: How to reference a String as both a string and an array
- Replies: 5
- Views: 1169
I'm not sure what memory leaks there may be in doing this, but running this code does what you indicate:
Code: Select all
string.s="Sample string"
dim array.s{1}(0)
array()=@string
debug array(5) ;displays an "e"
for i.l=8 To 3 Step -1 ;displays "ts elp"
debug array(i)
next i
- Fri Apr 13, 2007 7:22 pm
- Forum: Windows
- Topic: Opening Windows explorer and closing it after a few seconds?
- Replies: 8
- Views: 4250
- Wed Apr 11, 2007 8:18 pm
- Forum: Coding Questions
- Topic: PB NO
- Replies: 24
- Views: 4311
- Wed Apr 11, 2007 7:57 pm
- Forum: Coding Questions
- Topic: Division problems
- Replies: 3
- Views: 1239
There are two changes you need to make in order to get this to work. One involves the fact that the value for 'x' is not evenly divisible by 60, and any remainder is being ignored. Change 'y' from a quad to a double, and the calculation will be correct. The second part has to see with using Str() on ...
- Mon Apr 09, 2007 9:59 pm
- Forum: Tricks 'n' Tips
- Topic: Ruler Gadget - Beta 1 sourcecode library
- Replies: 56
- Views: 26324
- Mon Apr 02, 2007 4:51 pm
- Forum: Windows
- Topic: Changing mouse sensitivity on the fly.
- Replies: 11
- Views: 5355
- Mon Mar 26, 2007 3:45 pm
- Forum: Coding Questions
- Topic: Google PR checksum
- Replies: 14
- Views: 4502
- Thu Mar 22, 2007 6:27 pm
- Forum: Coding Questions
- Topic: Google PR checksum
- Replies: 14
- Views: 4502
- Thu Mar 22, 2007 6:16 pm
- Forum: Coding Questions
- Topic: Google PR checksum
- Replies: 14
- Views: 4502
@thefool
Pantcho is a scammer by his own admission. I'm just echoing his sentiment:
You're welcome.

Pantcho is a scammer by his own admission. I'm just echoing his sentiment:
@digePantcho!! wrote:...Code: Select all
var GPR_HASH_SEED = “Mining PageRank is AGAINST GOOGLE’S TERMS OF SERVICE. Yes, I’m talking to you, scammer.”;
You're welcome.

- Thu Mar 22, 2007 4:45 pm
- Forum: Coding Questions
- Topic: Google PR checksum
- Replies: 14
- Views: 4502
- Thu Mar 22, 2007 4:02 pm
- Forum: Coding Questions
- Topic: Google PR checksum
- Replies: 14
- Views: 4502
- Wed Mar 21, 2007 4:43 pm
- Forum: Coding Questions
- Topic: Google PR checksum
- Replies: 14
- Views: 4502
Here is a rough approximation of the Javascript version. I don't have a means of verifying the correct checksum, though a posted comment in the link you gave provided what is supposedly a correct one (8FDF03E58) given the URL 'http://office.microsoft.com/en-us/default.aspx', and this code matches ...