Click here to Skip to main content
16,022,060 members

Comments by Willtwinny (Top 24 by date)

Willtwinny 22-Mar-14 19:40pm View    
I actually tried placing the WebBrowser control on a form, and then in the properties of the solution changed it to a class library. Still it didn't work.

Have you got any alternative solutions? (I.E. Not using a WebBrowser control - something else and be able to keep it as a class library but be able to print out websites/webpages/html ?)
Willtwinny 13-Aug-13 12:00pm View    
MsgBox(hashtable(i).description) <-- A structure which is stored in the HashTable along with an integer as the key, has a variable called description. This message box displays the description item to the user. (This works)
description.text <-- Displays the text that needs to replace the above description in the HashTable.

Both of these are descriptions are strings, however the key for the hash-table is a integer thus that is why 'i' is used.

Sorry I am not very good at explaining things.

Public Structure myStruct
Public Description As String
End Structure

Dim newStruct As myStruct
newStruct.description = "hello"
hshStodRates.add(0, newStruct)

Hope this helps.
Willtwinny 25-May-13 10:23am View    
After testing this with other passwords of different lengths bcrypt seems to add 10 extra characters to the password, so as a temp measure I remove the last 10 characters of the password. It is not very secure but it seems to do the trick for now, until someone can shed some light on anything that I am doing wrong.
Willtwinny 27-Oct-12 14:26pm View    
Thank-you ever so much.
I can't believe it was something as simple as that!
I should've known that but it is me being stupid as always.
Thanks once again :D
Willtwinny 6-Jul-12 14:55pm View    
Fantastic!
This has helped me a lot. Thank-you for answering my question.