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 strongm 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. metsey

    Simple VC++ App Getting error LNK2001: unresolved external symbol _SQL

    Greetings I am trying to connect to a database and delete some records. I keep getting the following linking errors: CRS01_BlowoutDlg.obj : error LNK2001: unresolved external symbol _SQLFreeEnv@4 CRS01_BlowoutDlg.obj : error LNK2001: unresolved external symbol _SQLDisconnect@4...
  2. metsey

    Virtual Directory File Permission Denied

    I have an asp page on a corporate intranet that needs to read a csv file from a remote server. We set up a virtual directory on the webserver (IIS 5) box that points to the remote server's directory. We gave the all Domain IUSR's permissions to read and write to the virtual directory. On the...
  3. metsey

    ActiveX DLL ASP and SQL Server

    I created an ActiveX dll that creates a connection object to a SQL database on its class_initialize event. When calling the object from an asp page it just hangs the page while trying to create the object. I have the dll in a BIN directory within the wwwroot directory. It is registered. If I...
  4. metsey

    For Each Drive In Drives in C++???

    Is there a way to loop through all the logical drives in c++? I see how to determine a drive type when I get there but I can't seem to figure out how to scan the objects. In vb it is: For Each Drive in Drives... Thank you
  5. metsey

    Can't see server dll on client machine

    Is there a way to deploy a dll on a server machine running w2000 via dcom so that it will show up in the references window in a visual basic project on another machine?
  6. metsey

    Construct ADO Recordset in ASP

    I am taking the contents of a posted form into a recordset object which means I need to build it from the ground up (create it - add fields - then populate it). The problem is that ADO in VBScript does not seem to have this capability like it does in VB6.
  7. metsey

    Construct ADO Recordset in ASP

    I am looking for a way to create an "virgin" ADO recordset object from scratch without connecting to a datasource. I want to build the fields and populate them with data from data posted from the form of a html page. I have never had a problem creating a virgin recordset object (via...
  8. metsey

    FileExists Method of File System Object from ASP

    cbokowski did you ever remember the settings you used for IIS? I am having the same problem and would greatly appreciate any info. Thanks!
  9. metsey

    MAPI Session recipient

    I am writing a program that sends an email with an attachment automatically when invoked from a command line. One of the command line arguments is the email address of the recipient (it is an outside address to another company). My question is, I am using the MAPI.Session.Recipients object but...
  10. metsey

    After reload of frame page set hidden values

    sjravee I tried this and the reload wipes out the values. I put the functions in the proper order but it seems that the reload takes a bit of time.
  11. metsey

    After reload of frame page set hidden values

    I have 3 frames a,b,c I am pushing a submit button on c that is reloading b so that it hits the server to activate some backend usp's and redisplay data. The question is that there are values in hidden boxes in b that I need to preserve. How can I reload the hidden box values AFTER the reload?
  12. metsey

    Value of hidden input in another frame

    I have 3 frames a,b,c How can I acquire the value of a hidden in frame a from frame c?
  13. metsey

    Share Window Reference Between asp pages

    Is it possible to open a child window from an asp page (setting a reference to oWin or whatever) AND THEN navigate the parent's window to ANOTHER asp page AND persist the oWin reference in the new asp page?
  14. metsey

    Refresh Window Previously Opened with Window.Open

    Thank you desktophero. One more simple question, how do I target asp2 for the writeln() statement?
  15. metsey

    Refresh Window Previously Opened with Window.Open

    I have an asp page (asp1) in which a link invokes the window.open function for another asp (asp2) page. the user then can invoke stored procedures from a submit button on asp1 that changes the underlying data for asp2 (still opened). How can I get asp2 to refresh when the submit button is...
  16. metsey

    Sort By Derived Number (Group Footer) In Report

    Example : I have 3 fields in a table GroupNo Profit NoEmployees 1 $5 2 1 $1 1 2 $2 2 2 $0 2 I want report to appear as such Group Profit NoEmployees 1 $5 2 $1 1 totals $6 3...
  17. metsey

    Iterate through select boxes for values

    Yes I have a series of select boxes that I need to grab the name of the select box and the value of it.
  18. metsey

    Iterate through select boxes for values

    In asp, is there a way to gather the values from a series of select boxes in a submitted form?
  19. metsey

    Is it possible to obtain the value

    Is it possible to obtain the value of an attribute in the previous row <TR> of a table while looping in xsl? Here is sample xml: <rs:data> <z:row Position=1 LedgerID=&quot;619568&quot;/> <z:row Position=2 LedgerID=&quot;649185&quot;/> <z:row Position=3 LedgerID=&quot;619642&quot;/>...
  20. metsey

    Build a variable to build a comma delimited list?

    Is it possible to use a variable to build a comma delimited list of attribute values? I am using a for loop to iterate through a xml doc. While I am doing this I would like to build a comma-delimited list of values obtained from the same element/attribute as I for-loop. I will then use this...

Part and Inventory Search

Back
Top