Search results

  1. Q

    Solved Extracting part of string

    I never used split function before but i think it don't work in query right?
  2. Q

    Solved Extracting part of string

    Hi, I have field [Transfer] (text field) like this for example 349/2016 79/2019 i want to get four parts like 349, 2016, 79 and 2019. i got first and can get the last too but how to get 2016 and 79. one more thing if field is only 349/2016 i need only 349 and 2016 so what i will get for part...
  3. Q

    Solved default cursor position

    i took another approach. add go to new record and now is solved. thanks for all suggestions.
  4. Q

    Solved default cursor position

    yes i have menu for differnet actions. i open form from a menu. i put code after opening form on load event is that what is wrong?
  5. Q

    Solved default cursor position

    maybe i don't know to speak with terms. when i speak of a control i mean about combo boxes. yes combo boxes are used for searching but i use form first for entering data later when needed for searching. so it seems more convenient to me to open to filed ready for entering data. and i tried with...
  6. Q

    Solved default cursor position

    i can work without changing anything, but i want to work with less clicking. maybe i wasnt clear enough i dont want to set focus on control but to field. cursor is by default on control no need to change that if i dont put it on field. and i need focus only on load (opening the form). why is...
  7. Q

    Solved default cursor position

    that dont fix the problem. because it is split form combo boxes are in the form header and fields are in the detail. so with tab order are ordered combo boxes or fields depend where you are. in Continuous form default cursor position is in the first field.
  8. Q

    Solved default cursor position

    Hi, I have split form. On opening default cursor position is on the first combo box in form header. Can default cursor position be in the first field instead. thanks
  9. Q

    Solved Query sorting

    the way i tried before did not accept it and i tried many times. this time with order by n and deleting the ";" accept it. i glad it is solved. if i could find mistake i wouldn't post here. i learned this time and i wont make this mistake twice.
  10. Q

    Solved Query sorting

    ok i made it. deleted ";" and works now. thanks
  11. Q

    Solved Query sorting

    it is made that way and works independently but not in union query.
  12. Q

    Solved Query sorting

    it is checked. this union query was made by combining two select queries. both have same sorting and work with them. in union can be only one order by and not as the last line. select query above union is the first one and second select query is below union.
  13. Q

    Solved Query sorting

    tried and didn't work if my syntax was right: ORDER BY 2,3,4,5
  14. Q

    Solved Query sorting

    do not accept that. report mistake.
  15. Q

    Solved Query sorting

    can not be the last line. this query is made from two select queries. first before union and second after that.
  16. Q

    Solved Query sorting

    SELECT Delovodnik.DelovodnikID, Left([Ознака],4) AS Proba1, DatePart("yyyy",[Датум]) AS ГодинаПребарување1, Delovodnik.ОрганизационаЕдиница, Delovodnik.ОсновенБрој, Delovodnik.Подброеви, Delovodnik.Пренос, Delovodnik.Предмет, Delovodnik.ДатумНаПриемот...
  17. Q

    Solved Query sorting

    Can you give me an example?
  18. Q

    Solved Query sorting

    last line "what is wrong" not.
  19. Q

    Solved Query sorting

    Hi, I have union query and sorting not working. same expression in select query do the job but not in union query. expression is ORDER BY Left([Field],4), DatePart("yyyy",[field1]), table.Field2, table.Field3 what is wrong.
  20. Q

    Links

    let me see if understood well. first to change hyperlink field to text than to make query to make desired changes and last to back field from text to hyperlink again. if this is correct i can do it. problem solved.
Back
Top Bottom