|
-
Aug 18th, 2015, 03:14 PM
#1
Thread Starter
Member
How to access an Active X Control module
Hi, I'm trying to upgrade the visual basic 6 code to vb.net. I'm pretty new to this language..
So I'm trying to read the visual basic 6 code, and I noticed there were lines such as:
LoadComm.SetLoadSendOneCommBuf
LoadComm.GetLoadReturnParam(CommPort)
I want to understand what these lines are doing.
I noticed that loadComm is the name of an active X control
When I click definition of loadComm, I see that ActiveLoadProj is a class (member of ACTIVELOADPROJLib) and I see these functions are in the members of ActiveLoadProj.
How do I see the code for the functions though?
-
Aug 18th, 2015, 03:55 PM
#2
Re: How to access an Active X Control module
Upgrade... or downgrade? All in the eye of the beholder I'd say. 
Sounds simple enough: get the source code for ACTIVELOADPROJLib and read through it.
Without that there is nothing to be done.
-
Aug 18th, 2015, 04:26 PM
#3
Lively Member
Re: How to access an Active X Control module
If I’m not wrong , not even MS was calling it as “Upgdade” . They used the term “migrate”.
-
Aug 18th, 2015, 06:43 PM
#4
Re: How to access an Active X Control module
As stated, not likely to decompile the code. Sometimes you can get a clue if the author included them...
The object browser (F2) within VB will let you see the methods & properties of the ActiveX control. And if the author included any brief description of the methods/properties, you'd be able to see them for the highlighted entries within the object browser. Best bet is to try to locate some real documentation that describes the control in detail.
Tags for this Thread
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
|