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

Comments by Member 14359403 (Top 4 by date)

Member 14359403 11-Feb-24 14:17pm View    
thank you for your answer, i know it works without problems when it's compiled in visual studio, i tested it too. Do you think the problem comes, when I convert the machine code to hexadecimal string for vb6? If so, how should the conversion happen? By the way, I already have compiled exe in VB6, and when I execute it I always get WerFault.
Member 14359403 18-Feb-22 12:27pm View    
Thank you for the answer, Andre, but it won't work on this way.I think, i found a way to make it work, but there is another issue.

I use, this method:

If Dir("path to my .dll") <> "" Then
Exit sub
Else
Do other things...
End If
End sub
The problem here is, if this .dll is detected, the code after "Exit sub" will not be read.
What do I mean.
Detecting .dll -> exit sub -> and the rest part of the code, after end sub will not be read.(for example do other things)
Becase all stop after "Exit sub". My idea is, if this .dll is detected exit sub, and then continue to read the another part of the code. Any suggestions?
Member 14359403 17-Feb-22 10:38am View    
Deleted
Thank you for your answer, i was trying also "true" or "false" and it was the same(i am not sure if i am wrong or right.)
Member 14359403 8-May-19 6:01am View    
thank you all for your suggestions