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 Mike Lewis 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. BigBlueScreen

    Pulling table from multiple xls files

    Hi All, I need to take a single table that exist in each of the .xls files and combine them into a single file. The twist to this is that the table can span multiple tabs.. It always starts on tab 2 beginning with the header "machine parts" (data on line 6) and ends with the header "machine"...
  2. BigBlueScreen

    Pull a single table from multiple .xls files

    Hi All, I need to take a single table that exist in each of the .xls files and combine them into a single file. The twist to this is that the table can span multiple tabs.. It always starts on tab 2 beginning with the header "machine parts" (data on line 6) and ends with the header "machine"...
  3. BigBlueScreen

    DNS issue - RWW

    Thanks for the reply but I got it sorted..The ISP had set up incorrectly and had only registered the reverse lookup (needed an A record). Thanks,
  4. BigBlueScreen

    DNS issue - RWW

    Hi, I am having an issue setting up my Remote Web Workplace. It works fine internally but externally it only works off ip address(https://xxx.xxx.xxx/remote). When I ping remote.domain.com internally it resolves to private ip(192.168.x.x). Externally when I ping remote.domain.com I get an error...
  5. BigBlueScreen

    email not working

    If you can provide a link that would be great or what should I search under. Many Thanks,
  6. BigBlueScreen

    email not working

    I have to sign into my outlook client and say yahoo for example because my email does not forward from that domain. Hope that clarifies a little. Thanks,
  7. BigBlueScreen

    email not working

    Hi, Recently migrated to exchange 2003 (within the last 6 months), now we need to sign into outlook and web-mail client separately in order to retrieve all of email. Would like everything to come through outlook. Any help would be greatly appreciated.
  8. BigBlueScreen

    code help ---disable control

    Hi, I'm trying to disable a project if = "closed", but its greying everything & nothing is disabled. Heres the code I'm using : Private Sub Form_Load() Me.NavigationButtons = False Dim dbs As Database Dim rst As Recordset Dim strUserID As String Set dbs = CurrentDb() 'checking UserId exists...
  9. BigBlueScreen

    exclusive database

    Is there a way in code to make the first login exclusive and subsequent logins read-only?? Any help would be GREATLY appreciated. Thanks, Jd
  10. BigBlueScreen

    Refresh controls without using a button

    Hi, I have 9x contols on a form that after updated I would like the variance and total columns to update. I used the following code in each of the 9 controls.. V1.Requery CapTotal.Requery Only the top row I can get to work; and this only works for variance. Any help would be GREATLY...
  11. BigBlueScreen

    Want to display an error message

    Hi, This is the code I'm using currently.. Private Sub OpenFormDialogBox_Click() On Error GoTo Err_OpenFormDialogBox_Click Dim stDocName As String Dim stLinkCriteria As String Dim VbMsgBoxResult As String stDocName = "FRMDialogCaseBox" DoCmd.OpenForm stDocName, ...
  12. BigBlueScreen

    Want to display an error message

    Hi, Made suggested change and now I'm getting a error on form "Object Required". Any idea what this is in reference to? If not, Can I send you a copy of my DB? Thanks for your help, Jd
  13. BigBlueScreen

    Want to display an error message

    Hi, I'm trying to get a warning box message to appear when the "Case" box appears Null; using this code: Public Sub LabelWizard(strQueryName As String) ' launch the label wizard with the specified query On Error GoTo HandleErr Application.Run "acwzmain.mlbl_Entry", strQueryName ExitHere...
  14. BigBlueScreen

    Setting default of subform to null

    Thanks for all your help.. Jd
  15. BigBlueScreen

    Setting default of subform to null

    Hi Anyway I could send you a screenshot of what I would like it to resemble?? Thanks, Jd
  16. BigBlueScreen

    Setting default of subform to null

    Hi, Thanks for the quick response..as the form is now,when opened data is already populating subform--I want it either to appear but blank or somehow set visibility to no until after update of combos. Hope that clarifies alittle.. Jd
  17. BigBlueScreen

    Setting default of subform to null

    Hi, I have a subform "FRMPlantMachineSub"; in which I need on open to appear blank. I tried entering: Private Sub Form_Load() Me.FRMPlantMachineSUB = Null End Sub error--"object doesn't support propert" Any help would be GREATLY appreciated.. Thanks, Jd
  18. BigBlueScreen

    Textbox control for user input of Quantity

    Hi, If I was going to use Quantity (Qtylow and QtyHigh) as a range how would I structure my statement using Dlookup. Thanks for the help, Jd
  19. BigBlueScreen

    Textbox control for user input of Quantity

    From what I've read this seems to be the answer..Thanks for putting me on the right track. Will post back after I have a chance to play with it. Jd
  20. BigBlueScreen

    Textbox control for user input of Quantity

    Hi, I'm really stuck..I have a subform in which I have 3 fields Item(combo3), Quantity(TxtQuantity), and Price(TxtPrice). I need to based off of user input match a qty on TblPrice and return a price to user on form. ANY help with this would be greatly appreciated. Thanks again, Jd

Part and Inventory Search

Back
Top