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

    Databse Design - Same one to many used twice in a table?

    Below is the structure of the tables as it is now. Is it good design to have two table attributes/fields use the same relationship? resOwner and resVendor both refer to orgID it just depends on the orgType. I thought of breaking the Organization table into an Owner and Vendor tables but then...
  2. chris5g

    Timecard Management Doesn't Track Time

    I have installed Timecard Management Application Template on my server running Windows SharePoint Services (WSS) 3.0 and it will not save the time spent on a task. I can punch in / punch out but when I look at My Hours Today nothing shows up. Any suggestions? -chris...
  3. chris5g

    SELECT permission denied

    SELECT permission denied on object 'tblHardware', database 'hec_inventory', schema 'dbo'. SQL Statement: "SELECT * FROM tblHardware" Here is my problem... I can connect to the DB just fine using a login i created. I have the server setup in SQL & Windows authentication mode. I added the...
  4. chris5g

    Upgraded Power Supply Problem

    My friends computer wouldn't turn on and I figured it was the power supply. I got a new one that has more watts but when I installed it, the lights will come on but the computer will not boot. I justs shuts off after a few seconds. Do i have to reset the bios or something?
  5. chris5g

    array layout and getrows()

    I'm a little confused about the layout of an array returned by getrows(). It is my understanding that when you create a multidimensional array, myArray(10,3) the first number, 10, is the rows and the second, 3, is the columns. However, when I pulled the data with getrows, this seems to be...
  6. chris5g

    cint("0") error

    I am trying to convert string input to an integer using the cint() function. I am running into a problem when I try to convert the string "0" to get integer 0. Any solutions for this? Thanks!
  7. chris5g

    Write Permission IIS5

    I have a computer with XP Pro and IIS 5.1 but cannot get the write permissions to work. In the IIS manager, I have set the permissions to Read and Write but I am still getting an error. If I try to use Windows Explorer to set the permssion, there is no Security tab to check if IUSR_COMPUTERNAME...
  8. chris5g

    Get value from subform

    Hi, Here is my problem: I have a main form with sub forms. On the sub form I have a text field that equals =Sum(ProjectHours). I want to take that value and assign it to a text field on the main form. This is the code that was working at home but at work it does not. Private Sub...
  9. chris5g

    Import registry files from command console

    My system is hosed and I need to import some .reg files from the command console. I tried from the recovery console but it will not let me run any program (regedit.exe) other than the commands it supports. I thought about booting from a WIN98 disk but then it would not read from my NTFS drive...
  10. chris5g

    SQL / Text Driver

    I posted this in SQL programming but they thought I might haver better luck here. Also, the program works fine 90% of the time =). only every so often do I get this error... I am reading from multiple CSV files that are exported from a program we use. Every once in a while I get this message...
  11. chris5g

    SQL Error using Text Driver in ASP

    Hi, this one is giving me a big headache. I am reading from multiple CSV files that are exported from a program we use. Every once in a while I get this message and my program fails. Has anyone gotten this message before? DB fields: title,Dauthor,collection,call,item# Below is the error &...
  12. chris5g

    Display Records from multiple CSV files

    I have csv files that I use for my database. They all have the same field names (FName, LName, Address) but are created 2 or more times a month. I end up with files named 12Jun03.txt, 17Jun03.txt, and 23Jun03.txt. I can use each file name just like table name. Is there a way to write an SQL...
  13. chris5g

    Conditional Form Submit

    Hi, I am a ColdFusion newbie. I am trying to use CF to process my email form and am having trouble with my error checking. Previously I had written a javascript function to check for required info and then submit the form if all info was present using the form.submit() method. This would then...
  14. chris5g

    Dynamic Text Fields

    I want to be able to have one text field showing but if the user needs to use another, they'll be able to click on a button and a second one appear and so on. Is this possible without refreshing?
  15. chris5g

    Dynamic Text fields

    I'm trying to get a list of text values from a user and I want to be able to let them add as many text fields as they need. Ex. txtField1 holds Green so the user click on a button to add another field and then txtField2 appears. And so on. Is there a way to do this without having to reload...
  16. chris5g

    Dates and Greater Than / Less Than

    I'm using a Access to store the dates I need to compare and I want to delete a record that has a creation date prior to the current date. What is the SQL statement that will do this? I tried to use a string like the one below but it didn't work. If I use > it works but deletes everything...
  17. chris5g

    What are Crossover, Patch, Jump Cable

    newb quesion: Can someone describe to me what the difference between Crossover, patch, jump cables? If I get the wrong kind, will my network not work. thanks!
  18. chris5g

    Access database memo field and printing

    I read out the data from the db and print it to the screen. I use this code to do that for another Text field and it works. do while NOT rs3.EOF if rs3(&quot;Q7t&quot;) <> &quot;N/A&quot; then response.write rs3(&quot;Q7t&quot;) rs3.MoveNext loop For the Memo field, I had to save the...

Part and Inventory Search

Back
Top