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

    format text in msgbox

    I want to format text in a message box, see code below Msgbox = "this text must be in red" & "this text must be in black" is it possible to use different colors in one msgbox?
  2. rmh3619

    convert first character to uppercase

    thanks Remou, that helped!
  3. rmh3619

    convert first character to uppercase

    i have a text box on a form called txtDescription on the after update event i want to convert the first character in the txtDescription field to uppercase. I dont want to use vbProperCase because that will convert all first characters of each word in the field to uppercase thanks in advance
  4. rmh3619

    Calculate response time

    thanks fneily but this does not entirely produce the result i'm looking for. if for instance the registration date was 2 days, 4 hours and 10 minutes ago i want the value in the txtResponse textbox to show 52:10:00
  5. rmh3619

    Calculate response time

    I have two now() values in text boxes (txtDate1 and txtDate2) the first date is the registration date and the second is the start date. i want to calculate the response time (date2 - date1) and have the result in the format hh:mm:ss How can i do this?
  6. rmh3619

    pass variable to function

    I resolved the error my self by declaring the type of variable: Private Sub myButton_Click() Dim myString1 as String Dim myString2 as String Dim myString3 as String myString1 = "this is a test" myString2 = "this is the second test" myString3 = "this is the...
  7. rmh3619

    pass variable to function

    i tried it but i'm getting an error message: ByRef argument type mismatch do you know how to solve it?
  8. rmh3619

    pass variable to function

    thanks aceman1, I really appreciate your help!
  9. rmh3619

    pass variable to function

    i guess i should clarify my question: i want 3 message boxes following each other with message 1 to 3 something like this: Private Sub myButton_Click() myString1 = "this is a test" myString2 = "this is the second test" myString3 = "this is the last test" Call...
  10. rmh3619

    pass variable to function

    Thanks TheAceMan1 but how do i do this with multiple variables? Private Sub myButton_Click() myString1 = "this is a test" myString2 = "this is the second test" myString3 = "this is the last test" Call myMessage(myString) End Sub how will the function look in this case?
  11. rmh3619

    pass variable to function

    i am trying to pass a variable to a function in VBA but i cant get it to work. this is an example of what i'm trying to do: private sub myButton_Click() myString="this is a test" call myMessage end sub function myMessage() msgbox myString end function what am i doing wrong?
  12. rmh3619

    delay messages with more than X recipients

    Thanks xmsre, thats unfortunately the answer I expected ;-)
  13. rmh3619

    delay messages with more than X recipients

    Hello All, I was wondering if it is possible in exchange 2003 to delay a message with more than 1000 (for example) recipients. I want to delay the messages till after work hours so bandwidth does not get consumed by large mailings. help is greatly appreciated
  14. rmh3619

    for next question

    I have a table called "customer" with a field "customer_name" i want to execute code for each customer_name in the table. (e.g. msgbox customer_name) how can i do this. i think i should use a for / next statement but I dont know how. Thanks
  15. rmh3619

    chart not displayed when values are equal

    I have created a chart which shows two bars. one bar show new items in this month and the other shows closed items this month. the chart is created by joining 2 queries: SELECT Null,Sum([CountOfCall_ID]) AS [SumOfCountOfCall_ID] FROM [Dashboard_New_calls_this_month] union SELECT...
  16. rmh3619

    Filter fields starting with a number

    Thanks PHV that works great. I really appreciate your help!
  17. rmh3619

    Filter fields starting with a number

    I want to filter all records which start with a number. i use the following code to filter fields starting with a specific letter: Me.[customers subform].Form.Filter = "company Like 'A*'" Me.[customers subform].Form.FilterOn = True how can I use this code to filter on company names starting...
  18. rmh3619

    how to improve video performance

    Hello all, What methods are there to imrpove video performance on a terminal server or citrix server? viewing some websites with flash or large graphics result in very poor performance. does it help to upgrade the video adapter in the server? any advice is greatly appreciated!
  19. rmh3619

    populate combo box based on other combo box value

    Thanks for pointing that out remou!

Part and Inventory Search

Back
Top