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

  • Users: 44nato44
  • Content: Threads
  • Order by date
  1. 44nato44

    Include file asp classic vs asp.net

    I am new to asp.net and rebuilding a site of mine to asp.net from asp classic. I have an include file with some asp classic code, when I include this file to my asp.net it writes the text in <% which it did not when the file was asp. <%@ Page Language="vb" AutoEventWireup="false" %> <%...
  2. 44nato44

    left align and right align in the same cell

    I am not sure if this is possible, but I have a picture and text in a cell where I would like to have the picture on the left side of the cell and the text on the right side.. the size of the text can varie. I am not that much of an expert with CSS, hope somebody can help me. Cheers
  3. 44nato44

    how to make a connection to a SQL Compact server 4

    Hi I have installed a SQL compact server 4 and cannot get a connection string to work with it. I looked here http://www.connectionstrings.com/ but could not get any to work (I probably am doing something wrong) The code below gives this error in the iis log : |5|80004005|- 80 I hope...
  4. 44nato44

    Getting multiple values in one Report field

    Hi I hope you can help me, I have a table where I have multiple values like TBL: Name - KPI Val1 - KPI1 Val1 - KPI2 Val2 - KPI1 Val2 - KPI3 I would like to make a report, which would show from this table the values like : Name - Val1 KPI - KPI1, KPI2 Name - Val2 KPI - KPI1, KPI3 Is this...
  5. 44nato44

    @@Identity issue

    Hi I am not sure why this does not work here, the same code is used on another page on the same site, but with another insert statement. The record gets added but when I do the @@Identity it will not show the number, any ideas ? sqlstr = "INSERT INTO tblTaskToolSandbox ([ProjectID]...
  6. 44nato44

    psd website getting messed up when using zoom with mouse

    Hi I made my first psd web site and it looks fine until, you start ctrl and scrolling with the mouse. For the ones who never seed a psd web site it is basically a web site with tables and picuters Anybody knows a way to fix the site so it does not scroll or have the picture and tables follow...
  7. 44nato44

    Lotus notes e-mail

    Hi My code below is working fine, but my problem is when lotus notes is locked and it wants to send a mail, in the background the password input box opens to request the password, but the user cannot see it so the user thinks something is wrong and closes the DB. I want to move the password...
  8. 44nato44

    Unable to display controltipstext on all listboxes

    Hi I have numerouse list boxes which will display controltip text if certain conditions are met in a table (Please see code below) The controltip text is shown on some boxes but my lstKPI and lstSLA for some reason they are not shown. The form produces error code 0 which I have ignorred for...
  9. 44nato44

    if else statement

    Hi I am not good in java script, just to let everybody know :) But why will the below code not work ? If I remove the else part then the code works, but if I add the else part then the whole thing does not work.. any ideas ? function checkIfComplete(str) { if (str=="06) Completed") {...
  10. 44nato44

    uncheck a checkbox

    I have a procedure which clears out any textfields on a web site, but I would like to also do that with checkboxes, I hope somebody can advice what it might be. I tried document.getElementById('IntakeFormReceived').value = These values 0 or '' or "" or "off" Anybody know what I should use...
  11. 44nato44

    recordsource from another database

    Hi Not sure if this is possible, but I would like to have a recordsource from another database. I have seen that it is possible with a sql string with the IN function but I cannot get that to work. I hope somebody here can help. my code : strsql = "SELECT * FROM [TBL_Users] IN [;DATABASE="...
  12. 44nato44

    create dropdown values with vba

    Hi I would like to create a dropdown and populate the values via vba code, I looked on the internet and found that I should use me.mydropdown.additem My problem is that I do not get .additem in my list, am I doing anything wrong ? Thanks
  13. 44nato44

    Delete left join query

    Hi I made this query in MS Access database but have not imported my database to MS SQL but how can I get this query to work. Delete tblAccessRights.* From [tblAccessRights] Left Join [tblTriSecActis] on tblAccessRights.UserId = tblTriSecActis.UserName Where tblTriSecActis.UserName Is NULL I...
  14. 44nato44

    union query code from MS Access to SQL

    Hi I am converting my asp code so I can use it together with a SQL server. I have the following union query which use to work with my MS Access DB but does not work with my SQL database. Any ideas ? SELECT ProjectID as ProjectName FROM tblTaskToolProRght WHERE [UserID] = 'nato' AND...
  15. 44nato44

    Change filter per key press

    Hi I am not sure if this is possible, this is made with VBA code I have a search field which updates a sub form and I made it so it updates for each key keypress. The update to the sub form is done with filter So when I search after a name and type in t then all with t appears if then I type...
  16. 44nato44

    Change language for input type file

    Hi I am using the kode below to download files with, but because I am in Holland the language is in Dutch when no file has been chosen. Either I would like to have this text remove or changed to English <input type="file" name="File1"> Any ideas how I can change this, I have no control of the...
  17. 44nato44

    download files

    I have tried two things in regards to get files downloaded from my web server but none has worked. I hope somebody can kick me in the right direction. I have tried this, which download the files but when I open the files the file will not open. The format is not recognized. <% Dim varFiles Dim...
  18. 44nato44

    Connect to SQL2005 mdf file with classic asp

    Hi I have been trying for a while to connect to sql2005 mdf file but it just will not do it. I had to downgrade from sql2008 database to a sql2005 mdf file so we could use it with our provide. Hope somebody can help This is the code I have got : dim dbconn,sql,dbcomm,dbread dbconn=New...
  19. 44nato44

    ahtCommonFileOpenSave issue

    With the below code I get a file dialog box where I can select multiple files. What I see is that if I choose too many files then it forgets that it is an array. So if I choose one file, its not an array but when I choose more then it should always be an array. Has anybody ever see this before...
  20. 44nato44

    Add data from Excel

    Now I have been looking all over the internet and have not been able to find anything I can use. The only thing I want is to take data from an excel sheet and copy it to the ms access database. The only thing which comes to mind is take one field per time, which cannot be right. I am not sure...

Part and Inventory Search

Back
Top