> -----Original Message----- > I have a question to pointers: i want to write in RealBasic > like i do in > C/C++: > > MyProcedure(&errorcode,&text) > > How can i do this in RB?
Not exactly sure what you're asking, but you can pass parameters by reference in RB. E.g., MyProcedure(byref errorcode as integer, byref text as string) Is that what you want? _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>
