Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.9K
~516 People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for invisal

Dosen't work with [B]Visual Basic 5[/B] until you add the following function; [code] Private Function Replace(ByVal convertString As String, ByVal swapThis As String, Optional ByVal withThis As String) As String ' Swaps 'swapThis' with 'withThis' in 'convertString'. Replace = "" If swapThis = "" Then swapThis = "?": withThis = …

Member Avatar for JoeyJoeC
1
322
Member Avatar for alex_extreme

If a drive has no title or the title is "" then can't read [B]d.VolumeName [/B]and program will crash. Replace [code] n = d.VolumeName [/code] with [code] On Error Resume Next n = "" n = d.VolumeName [/code]

Member Avatar for Mark A
0
194

The End.