| 
| 
| 
| #68200 - 2002-07-15 05:27 AM  Re: New KiXtart Golf Challenge! (extended to Saturday, July 20, 6pm EST ) |  
| Howard Bullock   KiX Supporter
 
       
   Registered:  2000-09-15
 Posts: 5809
 Loc:  Harrisburg, PA USA
 | 
Oh, and the "Default" values are not really there even though Regedit says they are. Use regedt32 to verify.
 |  
| Top |  |  |  |  
| 
| 
| #68202 - 2002-07-15 08:12 AM  Re: New KiXtart Golf Challenge! (extended to Saturday, July 20, 6pm EST ) |  
| cj   MM club member
 
       
   Registered:  2000-04-06
 Posts: 1102
 Loc:  Brisbane, Australia
 | 
Lonkero,
 I have KiXGolfed your example script to this:
 
 
 code:and it scores 35 now
 for each $x in $aif $x>0
 $c=$c+1
 endif
 next
 
 ![[Big Grin]](images/icons/grin.gif)  
 cj
 |  
| Top |  |  |  |  
| 
| 
| #68204 - 2002-07-15 09:14 AM  Re: New KiXtart Golf Challenge! (extended to Saturday, July 20, 6pm EST ) |  
| Howard Bullock   KiX Supporter
 
       
   Registered:  2000-09-15
 Posts: 5809
 Loc:  Harrisburg, PA USA
 | 
I'm too tired to tell...>1000 with problems. I keep digging myself deeper because I'm too tired.
 Goodnight 3:15AM here.
 |  
| Top |  |  |  |  
| 
| 
| #68205 - 2002-07-15 09:18 AM  Re: New KiXtart Golf Challenge! (extended to Saturday, July 20, 6pm EST ) |  
| MCA   KiX Supporter
 
       
   Registered:  2000-04-28
 Posts: 5152
 Loc:  Netherlands, EU
 | 
Dear Howard,
 A good night's rest.
 
 Are you still using kixtart. Hard to understand who so much failures. General it is something for
 the MS club.
 greetings.
 |  
| Top |  |  |  |  
| 
| 
| #68206 - 2002-07-15 02:50 PM  Re: New KiXtart Golf Challenge! (extended to Saturday, July 20, 6pm EST ) |  
| Howard Bullock   KiX Supporter
 
       
   Registered:  2000-09-15
 Posts: 5809
 Loc:  Harrisburg, PA USA
 | 
I'm trying something different still using the Unicode import files. I will give this a little more effort before changing to the ASCII file and doing something a little simpler.
 |  
| Top |  |  |  |  
| 
| 
| #68207 - 2002-07-15 03:10 PM  Re: New KiXtart Golf Challenge! (extended to Saturday, July 20, 6pm EST ) |  
| BrianTX   Korg Regular
 
 Registered:  2002-04-01
 Posts: 895
 | 
Wow!
 It looks like I've missed a lot of the fun! I've been busy entertaining my girlfriend all weekend. Hmm... so should I hazard participation in this project? I may give it a go... at least for awhile.
 
 Brian
 
 |  
| Top |  |  |  |  
| 
| 
| #68210 - 2002-07-15 03:49 PM  Re: New KiXtart Golf Challenge! (extended to Saturday, July 20, 6pm EST ) |  
| BrianTX   Korg Regular
 
 Registered:  2002-04-01
 Posts: 895
 | 
That's cool. I have a pretty good idea on how to do this.. but under 1000 seems pretty durn good.
 Brian
 
 |  
| Top |  |  |  |  
| 
| 
| #68211 - 2002-07-15 04:28 PM  Re: New KiXtart Golf Challenge! (extended to Saturday, July 20, 6pm EST ) |  
| BrianTX   Korg Regular
 
 Registered:  2002-04-01
 Posts: 895
 | 
Hmm. are you guys using readprofilestring? Just curious.. I'm fiddling around with it because it seems like the easiest way to enumerate items. The only problem is the line breaks with a \.
 Brian
 
 [ 15 July 2002, 16:32: Message edited by: BrianTX ]
 
 |  
| Top |  |  |  |  
| 
| 
| #68215 - 2002-07-15 08:31 PM  Re: New KiXtart Golf Challenge! (extended to Saturday, July 20, 6pm EST ) |  
| BrianTX   Korg Regular
 
 Registered:  2002-04-01
 Posts: 895
 | 
While doing more research, I discovered that:
 
 code:MUST have double slashes in order to work... Just a comment.
 REGEDIT4
 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VBA]
 "Vbe6DllPath"="C:\\PROGRA~1\\COMMON~1\\MICROS~1\\VBA\\VBA6\\VBE6.DLL"
 
 
 Brian
 |  
| Top |  |  |  |  
| 
| 
| #68216 - 2002-07-15 11:12 PM  Re: New KiXtart Golf Challenge! (extended to Saturday, July 20, 6pm EST ) |  
| Anonymous 
Anonymous Unregistered
 
 
 
 | 
For your information:
 Keys can have square brackets and quotes inside them (but not '\')
 In the .REG file they are stored as-is
 eg [hkcu\...\test[key"for'your]perusal]
 
 The value-name / value-content pairs use escape sequences
 with '\' as the escape character (eg " is \", \ is \\)
 
 You should try parsing things like this "string\"quote:1"="first:string\"quote\\d"
 Spaces are legal between constructs, eg:
 [hkcu\...]
 "test1"             =        dword:          11223344
 
 |  
| Top |  |  |  |  
| 
| 
| #68218 - 2002-07-16 04:04 AM  Re: New KiXtart Golf Challenge! (extended to Saturday, July 20, 6pm EST ) |  
| Howard Bullock   KiX Supporter
 
       
   Registered:  2000-09-15
 Posts: 5809
 Loc:  Harrisburg, PA USA
 | 
I am really      ![[Confused]](images/icons/confused.gif) . 
 When view my key "07-13-2002", in Regedit and Regedt32 the Type shows REG_SZ. The input data to the WriteValue command was a variable of type string $D="" (which the VarTypeName was checked on the line preceding the WriteValue command), and "REG_SZ" as the 4th parm. Yet I get an error in Golf.kix because ReadType() returns "REG_NONE".
 ![[Confused]](images/icons/confused.gif)  ![[Mad]](images/icons/mad.gif)  ![[Roll Eyes]](images/icons/rolleyes.gif)  
 REG_NONE No defined value type.
 Can anyone shed some light on this?
 
 {edit}
 Just tested the ["b"  ] inside the keyname and passed
 ![[Big Grin]](images/icons/grin.gif) 
 [ 16 July 2002, 04:35: Message edited by: Howard Bullock ]
 |  
| Top |  |  |  |  
 Moderator:  Glenn Barnas, NTDOC, Arend_, Jochen, Radimus, Allen, ShaneEP, Ruud van Velsen, Mart
 
 | 
| 
 
| 0 registered
and 456 anonymous users online. 
 | 
 |  |