Search results for query: *

  1. D

    Insert Record, Retrive Record ID

    How would I get the Primary Key ID when I add a new record. Here is my code sniplet. Dim sqlCommand As New SqlCommand(mySQL, conn) sqlCommand.ExecuteNonQuery() '=================================== 'Get Record ID of record created...
  2. D

    vb.net error, need help

    I am getting this error when I call a function of mine in a class. "Cannot refer to an instance member of a class from within a shared method or shared member initializer without an explicit instance of the class." I am not sure what to do to fix it, or totally understand it. Can some one...
  3. D

    Printing a PNG file

    I am working on a Fedex Project and I have the label being returned to me as a Base64 string which I am currently saving as test.PNG file. What i need to do is be able to print the PNG file, and not have to save the file to disk. Can someone guide me here, or samples, or anything? Thanks Donald
  4. D

    Workgin PNG File via String

    Fedex was returning a Base 64 string to me for the image itself, once I found out it was base64 I got it fixed with little problem. Thanks everyone.
  5. D

    Workgin PNG File via String

    Come on can anyone please help me?
  6. D

    Workgin PNG File via String

    No, fedex is returning to me a xml document, and I parse out the label node, which is a string. The string is actuall the Fedex Shipping label that I will beed to print. I just need to save that to a File.PNG on my hard drive. Not read the file from hard drive as you do above. This is what I...
  7. D

    Workgin PNG File via String

    Working with PNG File via String I am working on a Fedex Project and I have a slight issue as i have never delt with this before. I have a String strLabel that contains the PNG label fedex returns to me. How do I write this to a PNG file to open on my hard drive. Any assistance wrould be great.
Back
Top