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: *

  • Users: mgid
  • Order by date
  1. mgid

    Orientation Problem

    Whenever I check the dynamic checkbox under "Page Setup", the report previews and prints in portrait when the reprot orientation is set to landscape. Does anyone know why this is happening? Thanks.
  2. mgid

    Build an SQL statement in a stored procedure

    bperry, Do you have any suggestions on getting around the EXEC permissions problem.
  3. mgid

    Parseing XML

    I think it loaded correctly. I just couln't access any of the data. I would like to see how you would use the DOM object to get at the data by field name held in the xml. Thanks.
  4. mgid

    Parseing XML

    Sorry, that's "Parsing XML".
  5. mgid

    Parseing XML

    I'm very new to xml. This some xml generated by saving an ADO recordset to xml in a client side script. I need to parse it for display on another page, and I having a hard time with the MSXML DOM object. Does anyone have any examples that might illustrate how to get at this. <xml...
  6. mgid

    Passing array to activeX from web page

    I've started work on something similar. I'm thinking that either vbscript or javascript can build the array by referencing the html controls that hold the data. Then the array can be passed to the activex control. How have you fared?
  7. mgid

    File download on client

    This is probably pretty basic, but I have little experience with client-side scripting. I am trying output a csv file to the client without going back to the server. The scenario is something like: 1. User requests data. 2. Data is displayed. 3. User wants to download data. 4. Download data...
  8. mgid

    file download

    This is probably pretty basic, but I have little experience with client-side scripting. I am trying output a csv file to the client without going back to the server. The scenario is something like: 1. User requests data. 2. Data is displayed. 3. User wants to download data. 4. Download data...
  9. mgid

    file download

    This is probably pretty basic, but I have little experience with client-side scripting. I am trying output a csv file to the client without going back to the server. The scenario is something like: 1. User requests data. 2. Data is displayed. 3. User wants to download data. 4. Download data...
  10. mgid

    file download

    This is probably pretty basic, but I have little experience with client-side scripting. I am trying output a csv file to the client without going back to the server. The scenario is something like: 1. User requests data. 2. Data is displayed. 3. User wants to download data. 4. Download data...
  11. mgid

    Long Querystring

    That worked. Thanks.
  12. mgid

    Long Querystring

    I have a page which writes some data for display to a page. The user can then browse to another page which displays a different, related set of data. The transition works fine except for when the Querystring exceeds about 2048 characters. In this case, the button simply doesn't work with no...
  13. mgid

    Odd component permissions problem.

    I am using three components in a web applicaition. Components A and B work fine, but when component C is called I get this error: Server object, ASP 0178 (0x80070005) The call to Server.CreateObject failed while checking permissions. Access is denied to this object. Component C has nothing to...
  14. mgid

    SDK

    We're considering buying the report sdk and we're a little unclear as to what exactly comes with this. Is it just documentation? I was hoping someone could give me a quick rundown of what's included. Thanks in advance.
  15. mgid

    Using array in a procedure.

    My bad, I had newarray() = myfunc(PublicArray()) which didn't work, but newarray() = myfunc(Mymodule.PublicArray()) did. george
  16. mgid

    Using array in a procedure.

    I tried those to no avail, but it worked when the array variable was qualified with the module name. myfunc(mymodule.array()) just one of those things
  17. mgid

    Using array in a procedure.

    Exactly like that in the same module. When debugging, the argument to the procedure is highlighted, not the procedure itself, so I'm assuming that when the procedure runs the argument is not recognized as a public array and is being recognized as another procedure(that does not exist). Is there...
  18. mgid

    Using array in a procedure.

    I'm trying to load an array into a public array variable in one procedure tren use it in another and the procedure will not accept the array. I'm not sure how to go about doing this. Thanks for any help. Here's the gist of my code: Public array1() As Double Sub loadarray1() ....load array1()...
  19. mgid

    Querystrings

    I had to use URLEncode. It's funny, I've done similar things before and not had the same problem. Thanks again.
  20. mgid

    Querystrings

    Can anyone tell me why when there is a space in a querystring value nothing after the space is posted to the next page? Usually this is not a problem, but with this application the percent signs aren't there. Is this some kind of setting in iis? I'm absolutely at a loss. Thanks.

Part and Inventory Search

Back
Top