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 Mike Lewis 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. BryanF

    error creating object on server

    this is line 191 of pm.asp in a visual interdev web project. DE = Server.CreateObject('DERuntime.DERuntime'); this is the error i get in internet explorer Server object, ASP 0177 (0x800401F3) Invalid ProgID. For additional information specific to this message please visit the Microsoft...
  2. BryanF

    getting ODBC error

    still didn't work. i get the same error on the same line number. I would give up, but i moved on to my next project and am still having trouble using some pages.... i can't even get them to display... so now i'm convinced it's a server issue... if anyone can give me a clue as to what to look for...
  3. BryanF

    getting ODBC error

    dim strSQL dim cmdObject set DatabaseConnection = Server.CreateObject("ADODB.Connection") DatabaseConnection.Open "DSN=pubs", "sa", "" set cmdObject=server.CreateObject("ADODB.Command") set cmdObject.ActiveConnection=DatabaseConnection...
  4. BryanF

    RemoteBoot service

    you know... i hate when people leave out crucial information when i'm helping them, and i just realized that i did that very thing. I'm looking to set this up on a windows 2000 domain. Sorry about that. Hope your site still works for the 2000 setup.
  5. BryanF

    RemoteBoot service

    thank you very much!!!... the help is greatly appreciated.
  6. BryanF

    Terminal Service Printing and color

    all you have to do is set up a local printer while in your terminal services section... when it asks for port assignment...scroll down till you see TS and your computer name with lpt behind it. This is a port created when the computer logged into terminal services and will keep putting the...
  7. BryanF

    RemoteBoot service

    With Novell I could set up a Boot Partition on the server and have network cards find it and load the partition over the network. I've found a couple of articles on the microsoft website that refer to the RemoteBoot service, but will not tell me how to set it up. I see the RIS service, but i...
  8. BryanF

    Delete part of a sring out.

    I am explaining my problem incorrectly. Please excuse. The last two days I have quit smoking and am at wit's end now. :) Now. I have a form with 6 combo boxes. let's say the first one is city. second one state. The form is strictly to narrow down the records i need to spit out in report. if i...
  9. BryanF

    Delete part of a sring out.

    In access 2000, if you use Filter by form. and apply your filter... then the form has a filter... let's say i put a form in filter by form mode and choose txtbox1 to say "New Orleans". The filter for the form is then Lookup_txtbox1.City = "New Orleans". If I had a report with...
  10. BryanF

    Getting Excel Viewer to read queries

    use the transferdatabase method to make the spreadsheet.... you can do it as many times a day as you like... I'm not sure of the "viewer" aspect.
  11. BryanF

    Delete part of a sring out.

    I'm trying to use a form's filter after it has been filtered by form. Good ole MSAccess seems to tack on a Lookup_ in front of all the controls that you use. To me this is horrible design, because i should be able to use the same string as a where clause to open a report. Can anyone tell me how...
  12. BryanF

    strike out text

    can i highlight part of a text box and strikeout the text?
  13. BryanF

    ? Best Method / Header & Detail Table

    quite a number of ways to do that. Create a query to use under your form for your details entry and in the criteria for the fk put in Forms!HeaderForm!Number... you can use the linked form wizard.... if it's in a subform... use the masterlink and childlink properties...any one of those will work..
  14. BryanF

    Problem with subform

    One of your forms is unbound?.... which makes sense.... if you're using an unbound form... you will have to build an SQL Where clause to throw as the filter on the second form....
  15. BryanF

    Import from comma delimited text file

    I see a possible problem and would like to hopefully stop it. I'm exporting tables out of databases into comma delimited txt files.... I want to import them all back into one large database. My primary key is actually a driver's license number. My question is... will the transfertext action give...
  16. BryanF

    TransferDatabase: Export REAL data from linked table

    All you have to do is make one make table query... include all of the fields into it...when you choose make table from the query menu it will ask you what database to put it in... tell it which one and you are done.... then run transferdatabase to send the table it made.... you can do this...
  17. BryanF

    Variable in Form Label

    all you need to do is create a string variable named strLabel.. assign strLabel whatever value you want... then just include this line with name changes of course: Me.txtLable.caption = strLabel
  18. BryanF

    Using Inet ActiveX control

    With Inet4 .Protocol = icFTP .UserName = "username" .Password = "pass" .Document = "C:\windows\desktop\web update\levideoweb.mdb" .URL = "ftp://levideostore.com/db" .OpenURL...

Part and Inventory Search

Back
Top