Search results

  1. FuzMic

    odd cursor in editing memo field

    Hi there I have a form with a text field bounded to a memo field. When i try to edit the contents in this field, the deletion of characters or editing get messed up. I have to extra careful to use backspace or delete and have to recheck after exit to see whether the changes are what i wanted...
  2. FuzMic

    Double & Single quotation marks issues

    June the Replace works out but VALUES part flag syntax error, any reason
  3. FuzMic

    Double & Single quotation marks issues

    Thank you June, i feel it will work. I will try it. i learn something new about VALUES, thanks for that. Cheer!
  4. FuzMic

    Double & Single quotation marks issues

    Hi gals / guys I use the following to append in a table, Tbl1 "INSERT INTO Tbl1 ( Txt ) SELECT '" & Var1$ & "' AS Cs;" As you can see the Var1$ as a string. In the query there it is quoted with a single quote before a double quote. The issue: if var1$ also contain a single quote eg House's...
  5. FuzMic

    Get fields name of table in fields collection

    Thank you folks. I have just used the .fields associate with recordset.
  6. FuzMic

    Get fields name of table in fields collection

    Hi guys Another quick shot - i want to loop through all the fields in a table and list out the names. So i am thinking of the field collection with all the Dim & Set and want a sure quick job done. I think we can also do it with an recordset. Will appreciate a quick comparison. Thanks...
  7. FuzMic

    RecordSource from 2 tables

    Got you mate
  8. FuzMic

    RecordSource from 2 tables

    June Thanks I thought i got the it spot on but i was wrong. I have fair experience to use JOIN (INNER & OUTER) and that is editable. In my UNION ALL query this message pops up "Union number of columns don't match". Is this a condition? And again, if the UNION ALL is a recordsource of a...
  9. FuzMic

    RecordSource from 2 tables

    How to UNION ALL? How does it go with JOINS? BTW does a UNION whatever allows select of fields, i think it do, right? Friend a bit more singing from Down Under! Thanks always. PS: If you are busy, i just look up at W3School. Cheerio!
  10. FuzMic

    How to check whether there is any hidden forms

    Guys and Gal, That's it, a big Thank you to all. Cheerio
  11. FuzMic

    Stuck with Update of Query to a Table

    Thanks Ladies & Gentleman, all feedback much appreciated. Pat I am waiting for the avalanche in the US midterm elections on your 435 seats in the House of Representatives and 35 in Senate; a little politics in this forum that our world really need and to be thankful for. :) .. Counting down.
  12. FuzMic

    RecordSource from 2 tables

    Hi Folks A quickie i hope :). I have 2 tables eg Tbl1 & Tbl2, both having a similar / same LinkIDFld. I would like to UNION them to be the recordsource of FormTarget. How should the recordsource string be? I have a few scattered fields in this FormTarget that is from another Table eg...
  13. FuzMic

    How to check whether there is any hidden forms

    It is a form. Anyway thank you both of you. Sorry s or no s
  14. FuzMic

    Stuck with Update of Query to a Table

    June thanks but the snapshot of the aggregate is static & still want to update the 2nd table. I can use Adodb record recordset to do it
  15. FuzMic

    How to check whether there is any hidden forms

    Hi there again I have form which can be toggled to visible or hidden. How to check it's status using VBA; what is the right collection to check this. I only know of Forms.Count or Reports.Count I am sure it is just a step away, with a little help i will get there :(
  16. FuzMic

    Stuck with Update of Query to a Table

    Hi I have a select query with Sum of a numeric field, let say we name Query as QTot: SELECT ID1, Sum(Num) AS SNum FROM TB1 GROUP BY ID; Then i wanted to use these Sum ie SNum to update a table Tb2, i use UPDATE Tb2 INNER JOIN ON TB1.ID1 = TB2.ID2 SET Tb2.Val = [QTot].[SNum] WHERE...
  17. FuzMic

    Move to new record from subForm using codes

    Miss communication I can put the codes in the on exit event, that is not my issue s
  18. FuzMic

    Move to new record from subForm using codes

    Sorry Again how to fire the exit event of the subform?
  19. FuzMic

    2nd time around Filter / recordsource don't work

    GG & others in the forum that keeping track. This is what i found If i want changes eg filter or record.rowsource, all target forms must be sub forms with the switching form as main. That's it.
  20. FuzMic

    Move to new record from subForm using codes

    Thank you Bro. ..BUT.. I have no chance to get to the Exit Event of the subform; it just move to a new Record in the SubFrm. You codes will come in handy if user move cursor to the main form, thus firing the Exit Event; until tht is done we are not given a chance to open new record in the...
Back
Top Bottom