RonPaii's latest activity

  • RonPaii
    I added a empty combo box control to better emulate MVF. Using the KeyDown and Click events to open the FakeMVF_Control and the...
    • 1754050169034.png
    • 1754050207364.png
    • 1754050303078.png
  • RonPaii
    I made 2 changes to your example to open the FakeMVF_Control over the button that opens it from frmUsersADO. frmUserADO, pass the Left...
  • RonPaii
    RonPaii replied to the thread Another Input Box replacement.
    I did some cleanup on frmdInputBox to tighten up width by removing some RTF codes before calculating the space requirements...
    • 1753972998447.png
    • 1753973106116.png
    • 1753973114555.png
    • 1753973431021.png
    • 1753973485448.png
    • 1753973532066.png
  • RonPaii
    If any chance this will be done multiple times per JobID, add a loop to create revisions. Dim Filename As String Dim FilePath As String...
  • RonPaii
    RonPaii replied to the thread Another Input Box replacement.
    frmdInput_Box had an un-needed validation on both the rtf and plain text boxes. For some reason they work on x64 but not x32. I am...
  • RonPaii
    RonPaii replied to the thread Another Input Box replacement.
    You are correct sir🤷‍♂️ I was looking for InputBox defined somewhere.
  • RonPaii
    This is my version of an input box form and function to replace the built-in InputBox. Features RTF prompt with resizing to fit...
    • 1753798387383.png
  • RonPaii
    RonPaii replied to the thread Solved Tab in RTF control.
    Thank you all for your input. I changed the font for the prompt to the fixed width font Consolas to allow using spaces to simulate tabs...
    • 1753199483931.png
  • RonPaii
    RonPaii replied to the thread Solved Tab in RTF control.
    I enable wheel mouse using a variation of Allen Brown's DoWheelMouse function. Most of my users want some wheel mouse functionality for...
  • RonPaii
    RonPaii replied to the thread Solved Tab in RTF control.
    I have an input box function that takes the same input as the built-in function. The function controls my input box form opened as a...
  • RonPaii
    RonPaii replied to the thread Solved Tab in RTF control.
    I have tried the following. "Invoice amount:" & vbTab & amount No space between : and the amount "Invoice amount:\Tab" & amount...
  • RonPaii
    RonPaii posted the thread Solved Tab in RTF control in Forms.
    I am displaying static text in an un-bound RTF control on a message box form. Is there anyway to imbed tabs in that text built up with VPN?
  • RonPaii
    RonPaii replied to the thread Solved Form Filter in VBA.
    If you are looking for the current month, use Month instead of DatePart. (Year(tblAppointmentList.AppointmentDate)=Year(Date()) And...
  • RonPaii
    RonPaii replied to the thread syntax error with null values.
    True, the PARAMETERS section is not needed, but I like to be complete. With defined and typed parameters, passing improper types to the...
  • RonPaii
    RonPaii replied to the thread syntax error with null values.
    I always try to use parameters, they allow me to lock down the types and values being passed to the query. ' Using Value for TheName...
Back
Top Bottom