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: *

  1. officemanager2

    error message Property access must assign to the property or use its

    Hello: Below is an example from the Visual Basic.net for complete beginners and that is what I am. This is from the third chapter and everything was going fine until the exercise to create a third text box that would input the result of WholeName based on the FirstName LastName text boxes...
  2. officemanager2

    Using VB in excel

    Hello: I’m trying to develop a spreadsheet application that will allow for a quick classification of a lot of data. In essence what I’m looking for is the ability for the program to look at three columns and decide whether a mineral is present of absent (based on the numbers below) in a given...
  3. officemanager2

    jquery to fade 'up'

    With the help of Vacunita I've been able to get this jquery working quite well. $(document) .ready(function(){ $(".clickMe"). click(function() { $("img.imgfade") .fadeIn(1000); $(this).find(".picframe") .slideToggle("slow"); }); }); The issue I'm...
  4. officemanager2

    Do I need to unbind - jquery

    I've been working on a simple rollover based on a book I've been reading. In their example there is only one image that drops down and I'm working on a page where there are four separate images that drop down. It seems I may need to add a line to unbind once the initial click occurs, but I'm...
  5. officemanager2

    from the Head First JQuery book

    Hello: I've been working through the subject line book and it was going well until I came to the sections on Methods can change CSS. I cannot get the header border to change color when the click occurs? I've double checked that I put the code in correctly but still cannot get the effect as...
  6. officemanager2

    XP/computer will not boot

    i have an XP in the office that was working fine until today. As it stands I have changed the battery and tried to start in safe mode but it will not go beyond that. I should point out before I changed the battery the date was resent back to 2008. No beeps at all when I try to start the...
  7. officemanager2

    buttons look like steps in IE

    Hello: I use firefox and when I put this together it works fine in fire fox, meaning the button row is vertical across the page. When I open in IE the buttons look like steps falling to the right. @charset "utf-8"; #navbar { width:800px; } #navbar #holder { height:40px...
  8. officemanager2

    third color tab possible?

    Using CSS is it possible to have a third color on a roll over. If the set color is red and the rollover is blue any ideas on how to make one of the tabs rollover to green? I've been working with inline css but no success yet. Any ideas, or is this not possible?
  9. officemanager2

    Data Binding

    Hello: New to VB.net and I was a best below average on VBA but still trying. So I've created a form in VB.Net which has the following on it: Public Class newclient Private Sub ComNewClie_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComNewClie.Click...
  10. officemanager2

    Infinity error

    Currently I'm in the early stages of using Visual Studio after working in Access. This code is an exercise to make me better at writing code. When I run this I get an Invalid Cast Exception Following the error messages I see is says conversions from string to integer is not valid...
  11. officemanager2

    validation rule issue

    Hi There: I've added in the following validation rule for emails put into the database: ((Like "*?@?*.?*") And (Not Like "*[ ,;]*")) The problem is when the end user makes a mistake the field is now active and will not allow the end user to tab to the next field even if they decide to leave...
  12. officemanager2

    close form and don't peform search

    I have the following code tied into a button which is supposed to close the form and put the enduser back at the switchboard. Private Sub searchtoswitch_Click() On Error GoTo Err_searchtoswitch_Click If Me.Dirty Then Me.Dirty = False DoCmd.Close acForm, "FNsearchform"...
  13. officemanager2

    Spliting database

    Hello: Followed all the insturction from the Access 2010 Missing Manual, as well found similar instructions on line but when I split the database into front and back end the front end still contains all the table information when I transfer that file to a different computer. Any suggestions?
  14. officemanager2

    Code was working and not has stopped - Mass Email

    Hi There: I've posted this code before and it was working fine, but not for some reason when it runs it only inputs one email from the query, and it is not even the first email?? Public Sub MassEmail() Dim db As DAO.Database Dim MailList As DAO.Recordset Dim MyOutlook As Outlook.Application...
  15. officemanager2

    change administrative settings for access

    I've been getting the error 8002801d and have found a potential solution on line. The problem is I cannot find where to change the settings. I've tried go through the properties when one right clicks the icon, but what I need to find is where the compatibility settings are? If anyone knows or...
  16. officemanager2

    run time error tied to module?

    Hi there: I'm trying to get Allen Browne's calender to open from the yes button on a message box: Answer = MsgBox("Would you like to open the calender to set a date for call back?.", vbYesNo) If Answer = vbYes Then DoCmd.OpenModule "ajbCalender", "CalendarFor"...
  17. officemanager2

    send multi emails from outlook

    Hi there: Got this code for sending multiple emails from access (Jeff Knapp is the original author). Public Sub MassEmail() Dim db As DAO.Database Dim MailList As DAO.Recordset Dim MyOutlook As Outlook.Application Dim MyMail As Outlook.Application Dim Subjectline As String Dim BodyFile As...
  18. officemanager2

    runtime error 2004

    I made a big (and dumb) mistake today and have been stuck creating a fix for it. The computer I use to create the database is running on XP using access 2003. There is another computer in the office used for calling out BUT it runs on on access 2000. I create the forms, add VBA, etc using...
  19. officemanager2

    low conductivity

    Hi there: Been trying to get a desktop (garage) hooked up with a router in my house. I put the actual device in the slot that had the Cat 5 wire. This was the only input on the mother board that the device would be detected. But, it seems the computer is still trying to communicate through the...
  20. officemanager2

    search by name form

    Hello: I'm trying to put together a search by name form (namefind) using a combo box. I've got to the point where the combo box uses a query to search the names, but I can't seem to get it so that when a name is selected (double clicked) the form (Mailing List) with the contact info on it...

Part and Inventory Search

Back
Top