-
Feb 19th, 2013, 06:09 PM
#1
[VB10] VBForums Reputations Saver 3
Last edited by Edgemeal; Sep 6th, 2016 at 09:40 PM.
Reason: Add link to forum Rep & Ratings FAQ
-
Feb 19th, 2013, 07:49 PM
#2
Re: [VB10] VBForums Reputations Saver - and the Ugly
Thank you very much for sharing this nice tool.
-
May 12th, 2013, 10:22 AM
#3
Re: VB10 - VBForums Reputations Saver 2
Did you changed the format of the file VBforumReps.txt?
I have added VBforumReps.txt (created by version 1) in the same folder of the version 2 in hope to merge new rep to previous but i got this error
---------------------------
File Load Error
---------------------------
Index was outside the bounds of the array.
---------------------------
OK
---------------------------
When i press OK, only the first rep is loaded!
-
May 12th, 2013, 12:40 PM
#4
Re: VB10 - VBForums Reputations Saver 2
 Originally Posted by 4x2y
Did you changed the format of the file VBforumReps.txt?
I have added VBforumReps.txt (created by version 1) in the same folder of the version 2 in hope to merge new rep to previous but i got this error
When i press OK, only the first rep is loaded!
Yeah, It is really only compatible with reps saved from v1.04 & 1.05, which include an extra entry in the reps file for the comment smiley.
I removed the built-in upgrade fix . 
To fix it so it will work with older saved reps look in, Private Sub LoadReps()
Note the code that gets the smiley index,...
Code:
' add comment smiley image index to LV Tag prop and set LV subitem image.
lvi.Tag = entry(6)
' set comment column(3) smiley image.
ListView_SetSubItemImageIndex(ListView1.Handle, ListView1.Items.Count - 1, ListView1.Columns(3).Index, CInt(entry(6)))
Next ' - next line
Replace that with this code from the old rep saver...
Code:
'v1.04 - add comment smiley image index to LV Tag prop and set LV subitem image.
' Note: Since versions before v1.04 didn't support this,
' we need to do a length check or will error!
' Once data is saved we would no longer need to do this check!
If entry.Length = 7 Then
lvi.Tag = entry(6)
' set comment column(3) smiley image.
ListView_SetSubItemImageIndex(ListView1.Handle, ListView1.Items.Count - 1, ListView1.Columns(3).Index, CInt(entry(6)))
Else ' data has NOT been saved with v1.04 (or later).
lvi.Tag = -1 ' -1 = no image.
End If
Next ' - next line
Once your rep file gets updated (got some new reps) it will be saved and include the newer comment smiley indexes, you could then go back to using the newer code.
Hope that makes sense.
-
May 12th, 2013, 02:09 PM
#5
Re: VB10 - VBForums Reputations Saver 2
Thank you, i have updated my old VBforumReps.txt successfully
-
May 12th, 2013, 02:30 PM
#6
Re: VB10 - VBForums Reputations Saver 2
 Originally Posted by 4x2y
Thank you, i have updated my old VBforumReps.txt successfully 
Great, thanks for the feedback!
BTW, I just updated the app to v2.01, seems the Given Reps URLs wouldn't work with the older vbforums base URL I was using, I hope thats fixed now! 
EDIT: The comment images need some work (resizing?), I just got your rep with the wave and its crunched up.
Last edited by Edgemeal; Feb 25th, 2014 at 05:21 PM.
-
May 12th, 2013, 04:12 PM
#7
Re: VB10 - VBForums Reputations Saver 2
BTW, I just updated the app to v2.01, seems the Given Reps URLs wouldn't work with the older vbforums base URL I was using, I hope thats fixed now!
Yes it has been fixed
EDIT: The comment images need some work (resizing?), I just got your rep with the wave and its crunched up
Only the following images > 16x16
alienfrog.gif
completeclear.gif
confused.gif
duck.gif
wave.gif
There are some images of siz 15x15 but i don't think they are need resizing.
-
Jun 5th, 2013, 05:42 PM
#8
Re: VB10 - VBForums Reputations Saver 2
-
Feb 9th, 2014, 03:06 AM
#9
Re: VB10 - VBForums Reputations Saver 2
 Originally Posted by 4x2y
Only the following images > 16x16
alienfrog.gif
completeclear.gif
confused.gif
duck.gif
wave.gif
Well I finally updated those images (v3.0 Beta 06), I'm not an artist so I just cropped and re-sized em. 
EDIT 2 : v3.0 BETA 06 was pulled due to errors.
If you updated your reps with v3.00 - BETA 06 and have incorrect reputation or smiley images, open your Rep files and remove those lines, save the text files and re-run "Import New" to correct.
Last edited by Edgemeal; Mar 29th, 2014 at 12:13 AM.
-
Jan 12th, 2015, 03:01 PM
#10
Re: [VB10] VBForums Reputations Saver 3
I wasn't going to upload updates for this app anymore but I just noticed the forum version updated (from 4.2.0 to 4.2.2) and found a bug in the old code, so posted up a new version for anyone still using this app.
-
Jan 15th, 2015, 03:12 PM
#11
Hyperactive Member
Re: [VB10] VBForums Reputations Saver 3
I love the GUI where are images for developments typically sourced ?
-
Jan 15th, 2015, 07:19 PM
#12
Re: [VB10] VBForums Reputations Saver 3
 Originally Posted by Leary222
I love the GUI where are images for developments typically sourced ?
I typically use free images I find online, and icons included with VS 2010.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|