Help please..... How To Convert Visual C++ Codes TO VB codes

  • Thread starter Thread starter Mty_3
  • Start date Start date
M

Mty_3

how do u actually convert codes from C++ to VB6 ?

I need help on this:

long SetFieldData(LPCTSTR FieldName, VARIANT FAR*
pFieldData, short
SetModified)

Where:
FieldName -> the field you wanna set
pFieldData -> pointer to the container that holds the data
SetModified -> change of data should be reflected by the
field's
modified flag
1 : set
0 : not set

i hope you guys are able to help me in this
hope to hear from u guys soon as i kinda of need it
urgently

thanks
 
Perhaps, you should post this question to either the VC++ or VB newsgroups
but not here.

This newsgroup is for Microsoft Access, a database application.
 
Some C++ code can be converted relatively easily, some only with difficulty,
and there are some things you can do in C++ that just can't be done in VB.
Anything involving pointer variables is likely to be tricky, as there are no
pointer variables in VB. I suspect you may need help from someone well
versed in *both* languages to sort this one out.
 
Back
Top