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

    Ok, here is what works Public Class Form1 Private Sub Combine_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Combine.Click Dim FirstName As String Dim LastName As String Dim WholeName As String FirstName = txtFirstName.Text...
  2. 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...
  3. officemanager2

    Using VB in excel

    There will be others, eleven in total. My feeling was I should reduce this down for communication purposes, but clearly there was still an issue so I could have gone with all eleven initially. The 'types' will become alteration patterns once they are agreed upon. For this purpose it seemed...
  4. officemanager2

    Using VB in excel

    Wow, that is very straight forward and workable. I'll probably have to post something again in a bit as I want to try and expand this sheet. Thank you for your time on this and I'm open to any other input. Thanks again.
  5. officemanager2

    Using VB in excel

    Well my thinking is/was that first the code has to determine whether within the interval the element(s)are or are not present then based on which of the three elements are or are not present it then will assign a type to the interval. I thought having the output filled in would be helpful...
  6. officemanager2

    Using VB in excel

    It is the output column that I am looking to fill in with the VB. Ideally the code would be able to look at the interval, determine whether the elements are present or not present, based on being above or below a number. From there determine and then put into the output column what is the type...
  7. officemanager2

    Using VB in excel

    I believe this is what you are requesting. This something I've typed out there is no code behind it. Interval K Na Ca Output 1 to 2 1 1 1 type 1 3 to 4 2 2 0 type 2 5 to 6 2 0 2 type 3 7 to 8 3 0 0 type 4 8 to 9 0 5 5 type 5 10 to 11 0 5 0 type 6 11 to 12 0 0 3 type 7
  8. 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...
  9. 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...
  10. officemanager2

    Do I need to unbind - jquery

    Hi Phil: Foolishly I did not change the CSS sheet to reflect the change from ID to class! I now need to figure out how set things up so only one drop down occurs at a time. I'll start by using 'this' but I may have to post again to get everything working properly. thanks for your help.
  11. officemanager2

    Do I need to unbind - jquery

    Hi Phil: Well at this point I'm moving beyond the book. I've covered up to the point of AJAX which I don't have much experience with so I'm now trying to apply what I've ''figured out' so far. What is happening when I make the changes you suggest is as follows: When I view in a browser (I...
  12. officemanager2

    Do I need to unbind - jquery

    Hi Phil: That does make sense, but when I made the changes to class none of the dropdowns worked. I see what you mean about the ID though. Is this a case of keeping the ID and adding an class to it like in a cascade where one would have at item that is formatted with an ID and then have the...
  13. 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...
  14. officemanager2

    from the Head First JQuery book

    Ok I added the '#' ID tag to the jquery and it worked. Thanks for your help I was really stuck as to what was going wrong there and when I look more carefully it is in the text in the book. Good insight for me as to how these small mistakes can bring things to a halt.
  15. officemanager2

    from the Head First JQuery book

    Given the code out of the book the button has no ID or can i add the # tag to the jquery?
  16. 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...
  17. 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...
  18. officemanager2

    buttons look like steps in IE

    Thanks that did the trick. I'll look further into the border-radius property.
  19. 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...
  20. officemanager2

    third color tab possible?

    Thanks Vacunita that works perfectly.

Part and Inventory Search

Back
Top