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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by conceptmgt

  1. conceptmgt

    Newbie: What is the best way?

    Hi I am new to visual basic .net, I have been using asp for years and have decided to take the plunge. I have decided the best way to learn is to work on a project. The program I am going to create will require a user to link up to my website (which will be asp.net based) to receive updates...
  2. conceptmgt

    Pop-up

    Hi I am using the javascript below to get my pop-up. The problem is when I submit my code generatorP.asp does not read the form values. It was working fine until I added the pop-up. Any Ideas? Thanks Gary <SCRIPT LANGUAGE=&quot;JavaScript&quot;> <!-- Begin function popUp(URL) { day = new...
  3. conceptmgt

    File

    How would I do that? Thanks
  4. conceptmgt

    File

    Hi Thanks but the problem is that For Each File In Uploader.Files.Items only reads file boxes with values it ignores the ones without values. You cannot even give it a default value. <input name=&quot;image1&quot; type=&quot;file&quot; size=&quot;10&quot;> Thanks Again Gary
  5. conceptmgt

    File

    Hi I use the code below to request all the file input boxes from my form. But if I have 5 file input boxes and only 3 of them have a new file selected it will only add 3 items to my array. I want it to add all 5 even if they are blank. How could I do this? i=0 For Each File In...
  6. conceptmgt

    Update

    Hi This has been annoying me for ages. I have a form with 2 images. When someone updates the second image and not the first it replaces the first image with the new second image. It is because I use For Each File In Uploader.Files.Items has anyone got idea how I could get around this...
  7. conceptmgt

    Domain Name

    Hi Thanks for your help, I am not a big network expert so the answers are a bit confusing. We have a server that has a static I.P. our clients access it via a 250.*.*.* address. Internally we can access it via 192.*.*.* or by ccsbserver which I think is setup in on the DNS. We have a domain...
  8. conceptmgt

    Domain Name

    Hi I allow users to access some web pages on my server via an I.P address. How do I go about pointing a domain name to my server? Thanks Gary
  9. conceptmgt

    Duplicates

    :-( Still get the same error cannot seem to work out what it is!?! Thanks Gary
  10. conceptmgt

    Duplicates

    Thanks I tried: insert into tblRefused select * from EmailAddresses where EmailAddress in (select EmailAddress from EmailAddresses group by EmailAddress having count(EmailAddress)>2) But I get this error: [TCX][MyODBC]You have an error in your SQL syntax near 'select EmailAddress from...
  11. conceptmgt

    Duplicates

    Hi I need help removing duplicates from a mySQL table. The sql statement below gives no errors but always comes back with the same records, so no duplicates are removed. The table has fields such as EmailAddress, EmailAddressID, EmailAddressActive, EmailClientID, EmailFirstName etc. So there...
  12. conceptmgt

    ASP &amp; mySQL

    No use thanks anyway!
  13. conceptmgt

    ASP &amp; mySQL

    Hi The code below worked fine uploading images to MS SQL but does not work on MYSQL. I keep getting the following error: Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC Driver Manager] Invalid string or buffer length...
  14. conceptmgt

    My SQL images

    Hi The code below worked fine uploading images to MS SQL but does not work on MYSQL. I keep getting the following error: Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC Driver Manager] Invalid string or buffer length...
  15. conceptmgt

    Duplicates

    Hi The code below is supposed to remove duplicates but it just keeps the same records. Any ideas? Thanks Gary strsql = &quot;CREATE TABLE &quot;&gotId&&quot;emailaddresses (&quot; strsql = strsql + &quot; EmailAddress longtext,&quot; strsql = strsql + &quot; EmailAddressID INT(4),&quot...

Part and Inventory Search

Back
Top