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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. crankyjim

    convert binary data to string

    This should do it... Public Function ConvertBytesToString(vData as Byte()) as String Dim myEncoding As System.Text.Encoding myEncoding = System.Text.Encoding.Default Return myEncoding.GetString(vData) End Function
  2. crankyjim

    When I return a DataView I get the following error

    You can't return anything less than a dataset from an XML webservice... Check out this link: http://support.microsoft.com/default.aspx?scid=kb;en-us;306134
  3. crankyjim

    Works on development computer, not on client

    Hi there. I must not be understanding something basic so I'm hoping someone can explain to me what I'm doing incorrectly. I have an ASP.net app which is set up for forms based authentication. I have a small XML file on the server computer which contains authorized user names for the app...
  4. crankyjim

    Scheduling report printing, any ideas?

    Bob, thanks for the response once again. My difficulty is in finding out which query is used by the selected report. In this database, the users can create new reports and queries. I need to be able to dynamically determine which query is connected to which report. After I know that, then I...
  5. crankyjim

    Scheduling report printing, any ideas?

    Thank you for the suggestion. I'm still wondering though how you determine which query is connected to a report? I want to be able to give the user a list of reports that can be scheduled and when they pick one, the program should display a list of parameters that the report requires, allowing...
  6. crankyjim

    Scheduling report printing, any ideas?

    Hi, I'm attempting to write an app in VB to automate and schedule the printing of Access reports. Most is complete except for one thing that's driving me crazy. If the report is based on a NON-PARAMETER query, everything is fine. As soon as I have a parameter based query, everything comes to...

Part and Inventory Search

Back
Top