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: tfhwargt3
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. tfhwargt3

    CURL efficiency

    Is using the curl library the most efficient way to screen scrape with PHP?
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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 = ''...
  9. 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...
  10. 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...
  11. tfhwargt3

    VB Modules and SQLExpress

    I have an access module that parses a file and creates a couple SQL queries within Access and I am migrating to SQL Server Express. I have MS Visual Basic, and I have created a new DataProject and added a Module, but I am having trouble connecting to my SQL Express Database because what I am...
  12. tfhwargt3

    IS NULL Syntax

    I am transferring queries from MS Access to my new SQL server and I am getting this error on what seems to be one of the more simple comparisons within my query. "... [COLOR=red]IIf((Addresses.Company IS NULL OR Addresses.Company="")[/color red], Addresses.FirstName &...
  13. tfhwargt3

    Understanding Modules and SQL

    I have just migrated my data from a local MS access database to an intranet MS SQL server on my LAN. All of my tables and querys are fine. The situation is, I am not really sure what exactly Access Modules translate to in the SQL Server Management Studio. Are they basically stored procedures...
  14. tfhwargt3

    Removing Spaces INSIDE a string Access Query

    I am trying to remove all parentheses, hyphens, and spaces from a field in Access using the query window and writing regular SQL code. The field is a string field that represents phone numbers. I want to end up with no spaces or non-numerical characters in the string. For example, fields...
  15. tfhwargt3

    VBA Script w/in .mdb File to Create .xls File

    I have a VBA script that is linked with an Access .mdb file that does several actions on the tables of the database. At the end of the script I want to output a lot of the data in the tables to excel files, and populate cells with Access Table data. The problem is, I want to import tab...
  16. tfhwargt3

    Where Not Exits

    If I have two tables, OrdersAll and OrdersCurrent that both contain the field OrderID, and I want to select all the records in OrdersCurrent that have a different OrderID than ones in OrdersAll, is this the most efficient way to accomplish this task: "SELECT * FROM OrdersCurrent AS OrdersNew...
  17. tfhwargt3

    Ready To Move On (Query Window)

    I know SQL and I understand microsoft access pretty well. I have always written queries for Access for simply organizing data for other programs to use (mostly blackthorn). All I have ever needed to do was create a table manually using the table creation tool in Access and then manipulate that...
  18. tfhwargt3

    Simulating MouseOvers

    I have a .onRollOver function written, and I have all the functionality i want for it inside. But when the user is not mousing over anything for a certain period of time, say 3 seconds, I want a simple scripted animation of a ball to start. I want my flash file to act the same when the ball...
  19. tfhwargt3

    Removing audio from an FLV before Import

    I know that there is an attachAudio() function, and I have searched the forum for people who have a similar question, but what I want to do is detach the audio from the FLV's I am importing so that they import faster because they are smaller. And even if it doesn't effect load time or anything...
  20. tfhwargt3

    Netstream FLV's and setting their frames per second

    I am using Netstream object to play FLV's dynamically and I was wondering if it is possible to slow down the FLV's when a certain events happens. For instance, right now I am using the built in my_ns.play("video_name.flv") and then it plays just fine when the event occurs. But I want to maybe...

Part and Inventory Search

Back
Top