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

    StateBag object question-can you help?

    Thank you all
  2. Visiting

    StateBag object question-can you help?

    Thank you.If I'm not mistaken you'r telling me there is only one StateBag object for all controls in a Page object?
  3. Visiting

    StateBag object question-can you help?

    This is probably a little weird question. In this example everytime button is clicked,counter is incremented <%@ Page Language=&quot;C#&quot; %> <html> <script runat=&quot;server&quot;> void Page_Load(Object sender, EventArgs e) { lblCounter.Text = Counter.ToString()...
  4. Visiting

    HELP! Wierd Numbers!

    :-) Thanks!
  5. Visiting

    HELP! Wierd Numbers!

    Wow! Thanks! But, why is it still only going to $14.95 when I have $i <= 15?
  6. Visiting

    HELP! Wierd Numbers!

    I want ot print a simple list of monetary value from $5 - $15 in increments of nickels, but using the code: for ($j = 5; $j <= 15; $j += .05){ print &quot;\$$j<p>&quot;; } prints out: $5 $5.05 $5.1 $5.15 $5.2 $5.25 $5.3 $5.35 $5.4 $5.45 $5.5 $5.55 $5.6 $5.65 $5.7 $5.75 $5.8 $5.85 $5.9...
  7. Visiting

    help with combo boxes please

    Thanks to both of you guys. Brodi, how would i tie the two combo boxes together?
  8. Visiting

    help with combo boxes please

    Hi. I have two combo boxes that have corresponding field values. Let's say my first combo box is &quot;NAME&quot; and the second combo box is PHONE NUMBER. If i select a name from the first combo box, how can I update the value in the phone number field of the second combo bux. Basically, I want...
  9. Visiting

    More on checkboxes

    Oooooh! That so much prettier! :-D Thanks Jim! ;-)
  10. Visiting

    More on checkboxes

    Jim, The key to the table is an autonum field CustomerNum. I think my problem is that I'm not positioned at SMITH's record. I'm just using the DLookup to display the appropriate check/uncheckedness of the box depending on the name. So I think the Me!DateField = Date command creates a new...
  11. Visiting

    More on checkboxes

    Hi again, I'm having trouble on another part of the form now. Recap- User enters a lastname into TextEntry textbox Checkbox CheckM1 becomes checked if there is a date in TextEntry's field M1 If the user checks an unchecked box, TextEntry's DateField value should change to the...
  12. Visiting

    Assigning value to a checkbox?

    Thanks a million to everyone that replied! :-)
  13. Visiting

    Assigning value to a checkbox?

    Is there a different way that I should be assigning the checked display to CheckM1?
  14. Visiting

    Assigning value to a checkbox?

    Sorry, in the Else clause the statement should be Me!CheckM1 = Not Null
  15. Visiting

    Assigning value to a checkbox?

    Here you go, thanks! Private Sub TextEntry_AfterUpdate() Dim M Dim last As String last = &quot;LastName = '&quot; & TextEntry & &quot;'&quot; M = DLookup(&quot;CheckField&quot;, &quot;TABLE&quot;, last) If M = Null Then Me!CheckM1 = Null Else Check = Not Null...
  16. Visiting

    Assigning value to a checkbox?

    Ack! I'm getting a run-time error now that says: &quot;Can't assign a value to the object&quot;?
  17. Visiting

    Assigning value to a checkbox?

    Thanks so much, it works, that's what matters!
  18. Visiting

    Assigning value to a checkbox?

    How do I give a checkbox a checked image? I tried using code like &quot;If (Condition) Then Me!Checkbx = False End If&quot;, but I get an error message about not being able to assign a value. Thanks for any help.
  19. Visiting

    msgbox saying there are macros...?

    Hi :) I know we can disable it in tools/options! :) Maybe I didn´t made me understand... What I was trying to know was if it is possible to, with the same document, make that msgbox, not to appear. In other words, I was trying to know if there is any place inside a document (like an initialize...

Part and Inventory Search

Back
Top