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. Joshua61679

    Relationship using specific characters?

    This may be a terrible idea, if you think there's a better way to accomplish what I'm trying, let me know. I've got a number of tables that have test results, with each test having it's own table. One of those (for example purposes) is "Dent". For identification purposes, we've created...
  2. Joshua61679

    Previous value + 1, with a twist

    Duane, If you tab in and out of Rating (which is the last control on the form) before you input anything in Sample (the first control on the form), then yes, you drive the value up. However, I can't convieve of any reason to do that intentionally. Also, because I need the ability for the user to...
  3. Joshua61679

    Previous value + 1, with a twist

    Thanks so much for the help. dhookom, I do have multiple users that need to be able to use the database and with the starting over of the numbering in the records, I coudn't figure out how to get the DMAX() to be useful. Probably someone smarter than me could come up with something...
  4. Joshua61679

    Previous value + 1, with a twist

    So I have a text box "Sample" on a form "TEST Dent" that is bound to a table "TEST Dent". I'd like for the default value of this box to be the previous record + 1. I do have the field in the table set to Number, if that makes a difference. However, I need it editable, and occasionally that...
  5. Joshua61679

    Submitting Form problem

    Ok, decided to try this using a function and dataSend and it worked. To do that, in the first frame of the timeline a created the function doSend. function doSubmit () { formData=new LoadVars(this); formData.recipient="jcoffee@superiorwells.com"...
  6. Joshua61679

    Submitting Form problem

    I'm getting the strangest thing, and I haven't been able to find anything on it. I've created a form in Flash MX. When I hit Its got some fields, and at the bottom a submit button. Here's the action script I'm using for the button. on (press) { set ("recipient", "jcoffee@superiorwells.com")...
  7. Joshua61679

    Combo dependant upon 2 other combos

    I got both these to work, thanks for the help! -Joshua
  8. Joshua61679

    Combo dependant upon 2 other combos

    I've got a form with 3 fields, all combo boxes: cmbType, cmbSupplier and cmbPart. I currently have cmbSupplier dependant upon cmbType. I'd like to make cmbPart dependant upon both cmbType and cmbSupplier. I have a query set up, but I'm not sure how to code it. My code to make cmbSupplier...
  9. Joshua61679

    Automatically set "Time to Reorder" field

    I'm a little rusty on my VBA, and I've not done this specifically before, so I need some help. I'm trying to get a field to tell me its time to reoder when my quantities get to low. I've got a "UnitsInStock", a "UnitsOnOrder", a "MinumumLevel", and a just created "Reorder" field. Corrisponding...
  10. Joshua61679

    Disk Management creates unmoveable "Free Space"

    I just deleted (what I believe was) an extended partion using the Disk Management funtion of XP Pro. It now shows that the space that the parition was previously in is "Free Space." Just after this "Free Space", is the rest of the hard drive, which is "Unallocated." I'd like to somehow get the...
  11. Joshua61679

    Outlook error 0x80048002

    When I try and send/recieve in Outlook XP, I'm getting this error Task 'pop3.icubed.com - Sending and Receiving' reported error (0x80048002) : 'This task was cancelled before it was completed.' I seem to be able to recieve fine, and when I test my account seetings, it sends the test e-mail...
  12. Joshua61679

    Outlook HTML sending problem

    I recently took my old hard drive out and put it into a new computer. The old drive ran Windows 2000, the new one runs XP Everything seems to be working fine, with the expection that now everything I send is automatically converted to plain text. I've got html set as the default, and it even...
  13. Joshua61679

    HKEY_CURRENT_USER\Software\MeowItchEggs

    I've got this strange line in my registry: HKEY_CURRENT_USER\Software\MeowItchEggs Does anybody know what this is? Thanks.
  14. Joshua61679

    USB auto-detect not auto-detecting

    Perhaps I should know this, but I don't. If I have a USB device plugged in when I boot, Windows XP (Pro) reads it fine. If I try and plug something in after booting though, it dosen't see it. Is there a setting somewhere that I might have accidentally changed? Or is this another issue. I've...
  15. Joshua61679

    using stock quotes

    yep, looks like I'm down to that, thanks for all your help.
  16. Joshua61679

    using stock quotes

    We're a privately owned company in the oil and gas industry, I'd like to be able to have market prices right on our page, since our customers make decisions based on what those prices are. I can link to a site that has them on it, but I'd prefer not to take them off site if I can avoid it...
  17. Joshua61679

    using stock quotes

    I'm trying to figure out a way to get live stock quotes on our webpage. Even delayed would be satisfactory. I've seen a few applications that will do this through Cold Fusion, but is there any way to do it right out of Dreamweaver? Thanks in advance. Josh
  18. Joshua61679

    Runtime 2501 Error when opening form with date condition

    Hello all, Just spent another day fighting a runtime error, and I give up. This is the code I am using: Private Sub OpenHole_Click() Dim strCutomer As String Dim strLease As String Dim strDate As String Dim strWhere As String strCustomer = Me!Customer strLease = Me!OpenHole.Column(0) strDate...
  19. Joshua61679

    2501 Error

    Thanks everyone for the help. I finally realized the problem was just that I needed to take out the 's in the strCased line. Then I did need to add acForm to the subsequent close command. Its always the stupid little stuff. Thanks again.

Part and Inventory Search

Back
Top