Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by irocz

  1. irocz

    Printing formatted text in vb.net

    Thanks Christiann. I do have Crystal Reports, and I thought about using it, but because of the approval workflow within the system and the other required functions, I wanted to house the reporting within it. Thanks again. Edward.
  2. irocz

    Printing formatted text in vb.net

    Hi Christaan, Thanks again. If you can change the code to produce the same result I would appreciate it, since I can't find any other responses. Edward
  3. irocz

    Printing formatted text in vb.net

    Thanks Christiaan, I am trying to print the content of the table, formatted, as shown, the printer is an hp laser, but since it is on lpt1, I use it as the default printer, since the user might have a different printer, and I do not use the printer dialog subclass: *** Private Sub pacr_Click()...
  4. irocz

    Printing formatted text in vb.net

    HI, I use this line in VB6 to print columns in a table, when I converted to vb.net, I cannot find the equivalent. I went through documentation, examples, this forum, FAQ and search, but I cannot find even a clue, I am trying to print one line at a time retreiving fields from a table: "...
  5. irocz

    Convert a C++ array to SAFEARRAY

    Thanks Rick, I guess I was not clear on how to ask the question. In simple words;The array is passed from VB which makes it by default a safearray, but since the DLL receives a pointer to that array, I was wondering if I can take that pointer to the array, then build a C++ array out of the...
  6. irocz

    Convert a C++ array to SAFEARRAY

    Hi All, I have a C++ DLL which receives an array parameter as follows: typedef const char* pStr; typedef const pStr* Strarry;// the declaration of the function: __declspec(dllexport) int _stdcall filem(pStr filename,Strarry fielddesc), I already handled the BSTR string for the first...
  7. irocz

    C++ declarations in VB

    avanderlaan, That was an excellent tip, ran the dumpbin and found the mangled names... it is working now. Thanks
  8. irocz

    C++ declarations in VB

    Hi Ron, Thank you for your response. In my C++ DLL, I have the correct code I think, I have the __stdcall, and the __declspec(dllexport), and I know about the alternative of defining the EXPORTS in the .DEF file, but the code is already developed. I declare the function(s) in my VB program...
  9. irocz

    C++ declarations in VB

    Thank you for your response. I actually have the book by Dan Appleman, but nowhere did I see what I was looking for. I even looked at the example he supplied APIGID32.DLL, and it does not provide me with what I want. Here is the scenario. The DLL was written in C++, I can use that DLL in VC...
  10. irocz

    C++ declarations in VB

    Thanks for your response, and sorry I was not so clear. Here it is: I have a dll which was writen in c++ which I want to use in my VB programs, since I am not a c++ programmer and already have a lot invested in VB. My major problem is the declarations in the include file(s) for using that dll...
  11. irocz

    C++ declarations in VB

    Hi, Has anybody ever converted c++ declaration to a VB program, I looked at the help within the DLL section and did not provide much. Thanks
  12. irocz

    Deleting a recordset

    Yes, sorry, I did mean PACK, although sometimes I would like to zap. I was able to identify marked for deletion record by the "*" at the beginning of the record, and created another file(using binary) ignoring these records with the "*",and then renaming the file again...
  13. irocz

    Deleting a recordset

    Hi, How can I permanently delete a recordset in .dbf format instead of marking it for deletion, without having to write a procedure to do it, which will involve copying the file?. I tried using the updatebatch method but did not work. I am using VB6, and I know that in Clipper and in Visual...
  14. irocz

    Insert a record using SQL

    Thanks..that worked..
  15. irocz

    Insert a record using SQL

    I think you either responded to the wrong thread or, if not, I do not understand your response, since I do not know xml. I already built the table, just want to add to it. thanks

Part and Inventory Search

Back
Top