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 SkipVought 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. tfhwargt3

    Javascript Validating Hidden Fields

    And I understand I could accomplish this the same way using naming conventions and add numbers to the end, but I only want to do this once for each field after I leave the field, not every time I leave every field for every single field in the form. I hope that sentence makes sense... Sorry...
  2. tfhwargt3

    Javascript Validating Hidden Fields

    Thank you BigRed1212. I used your idea to help me design my show/hide fields much better. Now I show and hide by <div> tags. But I am stuck here again at validating. Because I show/hid by <div> tags using an integer and a loop, I am having trouble validating fields within the <div> tags...
  3. tfhwargt3

    Javascript Validating Hidden Fields

    I have been searching the web about this. It seems most people want to validate hidden fields instead of not validating the hidden fields. I am thinking I might just create separate forms for each branch in the form. That way I can have separate submit buttons, and then use the different...
  4. tfhwargt3

    Javascript Validating Hidden Fields

    I am building a form for my business that has a lot of hidden fields. Since I am hiding and showing fields due to different selections the users make, I want to validate only visible forms fields. Here is my small form on a website. http://gaduu.com/RMA/ I don't have the validation script...
  5. tfhwargt3

    Virtual Network Question

    actually, I would like to not log into a physical computer there because all of the computers will be in use for some other task when I use my laptop. really what i want is to have that virtual network without having to log into a physical computer at work. is that possible?
  6. tfhwargt3

    Virtual Network Question

    Hi All, Sorry for the newbie question but I don't know if what I want can be done. I have a windows XP set up with shared hard drives that all of the users on the network can see and use. When I travel out of town with my laptop, I want to be able to connect to the network and be able to see...
  7. tfhwargt3

    CURL efficiency

    Is using the curl library the most efficient way to screen scrape with PHP?
  8. tfhwargt3

    Image that runs a script

    Hi All, I want to have a clickable image that runs a script that will parse the webpage the image is on for a specific word. Once I find the word I am going to use it to search in a mysql 5.0 database. I want to do this the most efficient way. My only constraints are that the image click...
  9. tfhwargt3

    Images with Secure DB Scripts

    Also, I am assuming I will need the user's ip address the image was clicked from to make sure it is the same ip address I have stored in the database.
  10. tfhwargt3

    Images with Secure DB Scripts

    Hi All, I have a very general question before I start a project. The answer will help me decide how to move forward with the project. Any help is appreciated. I will be placing an image on some of my friend's websites. This image will be clickable and when the user does click on it, I want...
  11. tfhwargt3

    Connecting Remotely to SQL Express

    Thank you bborissov. Unfortunately your idea gave the same error. I figured out what does work by checking another application that connects to my database remotely and was already working. I check its connection string through some options screens and found that it was using {SQL SERVER} as...
  12. tfhwargt3

    Datamember Not Found

    Also, if I do not run the program and move to another line, the line with Me.Close() turns red, and says it expects and = on that line.
  13. tfhwargt3

    Datamember Not Found

    I am trying to make a simple form with a close button separate from the x in the top right corner. I have made the button in the middle of the form. The button is called Command1. In the code section of the button I have: Private Sub Command1_Click() Me.Close() End Sub When the form...
  14. tfhwargt3

    Connecting Remotely to SQL Express

    Hello All, I have successfully connected to my SQLExpress server with a connection string locally on my machine. However, now I am trying to connect remotely to the server from withing my network and I am having some issues. My connection string locally that works looks like so...
  15. tfhwargt3

    Nested Cases in SQL Query

    For all of those who are wondering the solution is below: [code]COALESCE(a.Company, RTRIM(LTRIM(a.FirstName)) + ' ' + RTRIM(LTRIM(a.LastName)), RTRIM(LTRIM(a.LastName))) AS CompanyOrName, [code] The COALESCE function returns the first non-null arguement given. So it worked perfectly in this...
  16. tfhwargt3

    Nested Cases in SQL Query

    Unbelievable... As soon as I stepped away to take a break for a moment I figured it out. It seems that I will wait till I take a break next time to post a question.
  17. tfhwargt3

    Nested Cases in SQL Query

    I am having a problem doing nested case statements within a select statement. The error I get is "Msg 156, Level 15, State 1, Line 8 Incorrect syntax near the keyword 'WHEN'. SELECT Sales.OrderID, Buyers.eUserid, Buyers.Email, CASE WHEN Addresses.Company IS NULL OR Addresses.Company = ''...
  18. tfhwargt3

    Multiple Recordsets with One connction

    Hi All, I am getting a 3705 Error "Operation is not allowed when the object is open" when I run the below code ... conSQL.ConnectionString = "Driver={SQL Native Client};Server=.\SQLExpress;AttachDbFilename=C:\Program Files...\Data3.mdf...
  19. tfhwargt3

    FlexGrid or DataGrid

    Thank you Golom, One question. I have my server in a LAN in my office. The three other computers will eventually be using this Dataproject and Module on their computers, and the connection string will obviously need to change a bit. The question is, can I still use the AttachDBFileName = ...
  20. tfhwargt3

    FlexGrid or DataGrid

    I am trying to do two things. I want to connect to my local SQL Server Express Database and display records from a select statement. I am trying to figure out if I need a FlexGrid or a DataGrid. All I want to do is display data, I don't really need any interactivity with the data, just...

Part and Inventory Search

Back
Top