Search results

  1. M

    Data type for parameter 2 has changed since first SQLExecute call.

    More errors I was able to change some settings on the 3rd party application to get past the first error. I changed a preference within the application from batch commit to single commit. It was significantly slower but no error. Anyhow I have been able to load all the tables in the db with...
  2. M

    Data type for parameter 2 has changed since first SQLExecute call.

    I'm using a third party program to load some data into an SQL 92 progress database using the MERANT ODBC PROGRESS driver 9.1C and a few of the tables load fine, but on one particular table I get the following error, is it a bug, and is there something I can do to fix it? ERROR: [MERANT][ODBC...
  3. M

    Dump data from Com Object viewer

    Is there a way to dump the data to a file from com object viewer? Or is there another freeware program to do this? I have a com object that has hundreds of objects and methods and it would be really nice to have it them listed in a text file rather than trying to navigate the com object...
  4. M

    API dll calls - c syntax conversion

    Thanks Simon! I appreciate the tips on the INPUT/OUPTUT for pointers I never really thought thats what I was doing was passing the location not the value. thanks. Also I finally was able to get ahold of the developer of the dll and foudn out that the error structure is currently not used (not...
  5. M

    API dll calls - c syntax conversion

    Thanks simon, but unfortunately... It's not updating the fields, great idea tho. I don't think I would have thought of it. There must be something wrong with my initial set-size for the memptr. If I knew how many bytes this structure required I think I would be away... enum...
  6. M

    API dll calls - c syntax conversion

    ok thats not the problem I jumped the gun a bit on the previous post, I have set both external procedure definitions to PERSISTENT. ANd it appears to be working ok. The problem with the error I am getting seems to be something I have either setup incorrect with the struct or defined the memptr...
  7. M

    API dll calls - c syntax conversion

    thanks guys But I have one more problem I think it is functioning as intended, but I am still not getting the response I would like. I think the problem is that This dll I am calling has 2 procedures in it. One is the one we have been discussing and one is a much more simple call...
  8. M

    API dll calls - c syntax conversion

    still no go This is how I have it now, thanks for the help, but it still seems to be not working properly I am getting no visible progress/windows errors however I do get a 0 (zero) back in the STErrorCode which, according to the dll documentation, indicates function failure. I also get a 0...
  9. M

    API dll calls - c syntax conversion

    I am treading into new waters here, but I need to make some calls to procedures located in a .dll file. Following is the c syntax for the call: int Process_record ( char *inputRec, int *inputSize, char *outputRec, int *outputSize, TSTError *STError ) the...
  10. M

    PS Timer

    I have a dialog that I want to display the seconds ticking by to show the user that there is in fact some kind of activity. I have tried to use the PSTimer to update a fillin field on the dialog. my dialog calls several other programs and while it is out there doing that I want to display the...
Top