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 TouchToneTommy 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: oakgrove
  • Content: Threads
  • Order by date
  1. oakgrove

    starting SQLServer 2000 "network path was not found"

    Hi, I have sqlserver 2000 running on winxp sp2. I recently had the HD changed to a larger drive all programs and files seemed to have transfered over ok. I just installed VStudio 2005 which put a copy of sqlexpress on the machine. Now when I try to start sqlserver2000 with the name of the...
  2. oakgrove

    htmllistener in com server

    I subclassed the VFP 9.0 ffc htmllistener class to modify the getpagelength and getpagewidth so it can be used on a box with no printers defined. The new vcx is noprinthtmllistener. I call it in a COM server “exe” to use it to print a report outputted as an html stream. This exe is called from...
  3. oakgrove

    Insert to linked server with out primary key

    The following query runs on the SQL server box that has the 'sourcetable'. Its function is to add new records to the 'targettable' on the remote linked server. It correctly adds rows when I have the 'targettable' set with column 'phoneleadid' as the primary key. It runs but, does not add rows if...
  4. oakgrove

    deploy htmllistener in exe

    I have found that I can't deploy code in a com object that trys to use the _reportlistener.vcx. For example: The following code produces the report using the vfp classes on my development machine but does not when deployed to a test machine. Instead lolistener = .f. define class getstream...
  5. oakgrove

    Error 1958 w/ object assisted repo form + no printer

    This msdn link: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_foxhelp9/html/1845aee0-11f6-4d09-bfbd-b1847476a3d1.asp says that object assisted printing will fail if there is no printer installed or the print spooler is not started in the executing environment. It suggests...
  6. oakgrove

    htmllistener output from COM to ASP

    I have a vfp 9.0 program that opens some dbfs, exectutes "REPO FORM myreport OBJECT TYPE 5" and creates a nice html file. I want to modify this code a little so the output of the "REPO FORM.." command is saved as a string of HTML code rather then to a file. I can do this with code such as this...
  7. oakgrove

    Copy stored procs from one server to another

    Hope this isn't too simple a question to ask, but whats the easiest way to copy several stored procedures that I have writen and tested on my development machine to the production machine. A better way then cut and paste. tia Oakgrove Computer Grouper Lansing, MI
  8. oakgrove

    datalist item conditional formating

    I have an sql server table of items which have expiration dates. I have a datareader 'dtrlist' filled by an sql sever select .executereader command. I have a datalist 'dlstlist' defined as: dlstlist.datasource = datalist dlstlist.DataKeyField = 'listingid' (a unique column from the sql...
  9. oakgrove

    Treeview checkbox value not consistant to server

    I have a webform to let users add a new record to an SQLServer table as well as several records to a related child table. The parent table record gets values from textboxes on the form. The child table gets as many records as needed from checkboxes of features on the form. I am using a three...
  10. oakgrove

    textbox to ntext sqlserver column

    I am trying to put the contents of a text box into an SQL server ntext field with an UPdate statement and parameters <code> ... cmdUpdate.commandtext = &quot;Update table SET comments=@comments&quot; cmdUpdate.Parameters.Add(&quot;@comments&quot;,System.Data.SqlDbType.NText, 16).Value =...
  11. oakgrove

    HTMLInputfile and page behind

    I'm trying to use htmlinputfile control with id=&quot;fileup&quot; in an aspx page. The page has an aspx button with id=&quot;Upload&quot; and form tag like this &quot;<Form EncType=&quot;multipart/form-data&quot; runat=&quot;Server&quot;>&quot;. This seems to work fine if I have all in one code...
  12. oakgrove

    how find identity of server

    Hi all, Is there a way (in the code) to find out the identity of the server that is running an aspx page? I need to have different connection strings for my development and my deployed machine. My idea is to have both strings in the code and specify the correct one at run time by reading the...
  13. oakgrove

    Control.remove method

    Hi, I have an aspx form page the querys a datasource into a datareader. Each data item is then displayed in a textbox control each with a label control to identify it. I have each pair of lable/textbox controls in a planel control. Often there will be missing data so I need to remove the label...
  14. oakgrove

    WebServerForXP Home

    My understanding is the IIS does not run on XP Home Edition. Is there a web server that handles classic ASP and will run on XP Home Ed OS. Paul Emery oakgrove@lansing.com
  15. oakgrove

    ASP Pages Stop Loading

    I use classic ASP pages with ado and odbc sql queries to several VFP free tables on a windows 2000 (servpak3) server running iss. It has been running for several years with few problems. This box runs numerous web sites several of which query the datatables. Occasionaly something occures that...
  16. oakgrove

    See if cookies are off

    Was searching for a tip on how to find if a user had cookies turned off because our client's upload page needs them on to allow us to set session variables. If they have them off I needed to insert a message saying they could not proceed. Did find some other useful explaination of the...
  17. oakgrove

    IIS 5.1 on XP-Prof shows HTML but not ASP

    I installed frontpage 2002, then iis 5.1. I can see html pages on http://localhost/... but I can't see asp pages. I get &quot;server application error&quot; and when I look at the event log it tells me: &quot;The server failed to load application '/LM/W3SVC/1/Root'. The error was 'Class not...

Part and Inventory Search

Back
Top