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 TouchToneTommy 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. iamedwardkim

    Is there a character for a square or checkbox?

    I had been using chr(13) before when I was using Arial, because I believe it wasn't being correctly decoded and it generated a little square instead. But now that I am using a different font, the chr(13) is now correctly interpreted as a little plus sign. I need to know if there is a chr(xx)...
  2. iamedwardkim

    Setting a Page Invisible based on User/Group

    Is there a way to set a "Page" on a form invisible based on the User that is logged on? or the group the user is a member of?
  3. iamedwardkim

    Continuous Form New Record Question

    Is it possible to have the entry line for a new record in a continuous form to show at the top rather than at the bottom?
  4. iamedwardkim

    Workgroup Security

    Hi, I have been attempting to use the Access User and Group Permissions using the Wizard and also by configuring it manually. It all seems to work fine when I am working on my personal computer, but once I try and access the database from another computer on the network (one with a different...
  5. iamedwardkim

    Carriage Return

    Is there a carriage return character? I've been using the combination of Chr(13) and Chr(10). And is there a way to set a variable to multiple carriage returns e.g. CR3 = Chr(13) + Chr(10) + Chr(13) + Chr(10) + Chr(13) + Chr(10) and have this variable accessible from a report? Any help would...
  6. iamedwardkim

    Declaring a Variable

    How can one declare a variable so that it is accessible from several subroutines? Basically I have several subroutines which respond to different events (e.g. mouse clicks). I need to be able to access the same variable from all of these subroutines. Thank you.
  7. iamedwardkim

    Currency formatting question

    Is there a way to format a number like 2379 to $2,379.00 from within the expression builder?
  8. iamedwardkim

    Date Display HELP...

    Hi... How can one display "01/30/03", which is generated by Date(), as "January 30, 2003"? Thanks in advance.
  9. iamedwardkim

    Input Mask Help

    I currently have an input mask that allows two numbers followed by a hyphen followed by three more numbers and it looks like this: 00\-000;0;_ However, I would like the three numbers following the hyphen to also accept the letters in the alphabet. Does anybody know what I should do to my input...
  10. iamedwardkim

    SUM of Text Box Values

    I have a text box in the Detail section of my report. I am trying to calculate the sum of all the values in this text box and place this total at the footer of my report. Is there a way I can do this? The value in the text box is determined by an IIf statement.
  11. iamedwardkim

    Rounding a Number UP to the Nearest Hundredth

    Is there an easy way to round numbers up to the nearest hundredth (e.g. 7.83942 and 7.83021 would both be rounded up to 7.84)? Thanks in advance.
  12. iamedwardkim

    Open Combo Box by Hitting the Down Arrow

    Can someone help me with this? I'd like a combo box to open when the down arrow key has been pressed. Thank you.
  13. iamedwardkim

    Date Comparison

    Hi, I am trying to compare a date in a table to a date in a text box on a form. I have a feeling it's because the two dates may not be of the same data type. Any ideas?
  14. iamedwardkim

    Setting a Text Box's Default Value as a Query Result

    I am able to set a combo box's row source as the return values from a query. However, I am trying to set the default value of a text box as the result of a query, where I know only one value will be returned, and I am unable to do so. Can someone please help? Thank you.

Part and Inventory Search

Back
Top