Search results

  1. S

    Solved Open a form as dialog with no borders. Is it possible ?

    I need to do some tests after I close the form. If I can't do it this way I'll find another way :)
  2. S

    Solved Open a form as dialog with no borders. Is it possible ?

    No, it's a button I put there. Look at pic 1 :(
  3. S

    Solved Open a form as dialog with no borders. Is it possible ?

    This is what happen, as you can see in pic. 2 The form's border was set to none, and opening it in acDialog mode showed the border and an empty title bar, with no controls My question is how can load the form with no border and still prevent the code from continue running ?
  4. S

    Solved Open a form as dialog with no borders. Is it possible ?

    It set to none, as you can see in the first picture I posted
  5. S

    Solved Open a form as dialog with no borders. Is it possible ?

    I want it to look like this But if I open it in acDialog mode it will look like this
  6. S

    Solved Open a form as dialog with no borders. Is it possible ?

    It is Still does not act as :(
  7. S

    Solved Is VBA.Hex(lColor) give a wrong color code ?

    Thank you all Once I know the Red and Blue are swapped I can live with that :)
  8. S

    Solved Open a form as dialog with no borders. Is it possible ?

    I open a form from a function (It has to be a function to be run from an .OnDblClick event) I want the form to be opened and halt the remaining code from running. This form should have no borders. If I open the form in acWindowNormal the form will look as I expect but code will continue to run...
  9. S

    Solved how to Find a record on another form

    Thanks This do the job :)
  10. S

    Solved how to Find a record on another form

    I'll try to explain the situation better I have a form with two SubForms The top one show a list of records and the bottom one show some data for the selected record on top. After editing data in the Bottom one I need to requery the top one to reflect some changes made. Now I need to go back...
  11. S

    Solved how to Find a record on another form

    I requery the form to show some changes made. I need to go back to the record I was in
  12. S

    Solved Is VBA.Hex(lColor) give a wrong color code ?

    Ouch :oops: How can I know where the VBA.Hex(lColor) is ?
  13. S

    Solved how to Find a record on another form

    Hello I need to find a specific record on another open form. I want to select the "RecordName", based on the "RecordID" How can I do that ? Thanks
  14. S

    Solved Is VBA.Hex(lColor) give a wrong color code ?

    Thanks I already have a working code. Problem was with the built in VBA.Hex(lColor) which reverse it :( As also approved by missinglinq All iis good now :)
  15. S

    Solved Is VBA.Hex(lColor) give a wrong color code ?

    As example The correct Color code for RGB(74, 169, 194) is 12757322 The correct Hex code is #4AA9C2 VBA.Hex(12757322) will result in C2A94A :oops:
  16. S

    Solved Is VBA.Hex(lColor) give a wrong color code ?

    is it possible that VBA.Hex(lColor) give a wrong color code ? Seems I have to take it like Last2 - Middle - First2 :rolleyes:
  17. S

    Solved Function error

    Thank you Case is already solved as suggested by theDBguy I like your suggestion,and might go for this direction :)
  18. S

    Solved Function error

    Thank you This did the job :love:[/code] This one worked Thanks :love:
  19. S

    Solved Function error

    Hi I'm using this code, but it will fail on Me Me.ProductPercent1.OnDblClick = "=fnCalcPercentFromQty_Click(Me, 'ProductPercent1')" This how the function looks like, so Me as Form should not be a problem Public Function fnCalcPercentFromQty_Click(frm As Form, strControlName As String) It...
Back
Top Bottom