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 strongm 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: *

  • Users: broj1
  • Order by date
  1. broj1

    sorting and grouping in forms - not in reports, but in same way

    @Remou the second suggestion is exectly what i am looking for Mainform OrderNo: 55 Costumer: SomeGuy -------------------------------------- bound Subform: car car1 car2 car3 motorbikes motor1 motor2 what kind of a "fancy conditional formatting"...
  2. broj1

    sorting and grouping in forms - not in reports, but in same way

    thanks for fast reply Remou! Yes, you are correct, but the subform itself shows you records only for induvidual group. I would like to how all groups and all products for each group in one subeform for one Order (linked by master and child): so, Mainform OrderNo: 55 Costumer: SomeGuy...
  3. broj1

    sorting and grouping in forms - not in reports, but in same way

    Hey; i got that, the reports are more flexible with this and that there is no function for sorting and grouping like there is one in reports. But is there a way around? To somehow simulate this in forms? Like, i have continious subform in which i would like to show products by category - like...
  4. broj1

    transpose textbox's horizontally?

    thx dhookom this comes to me a bit late ... but thanks for the effort, i will sure use it next time
  5. broj1

    transpose textbox's horizontally?

    well i did it manually ..... ufff it is so time wasting . if somebody finds the answer to this please let as know
  6. broj1

    get just month and year from week number?

    thx for your replies ...you are great people! i've gone behind the back into a pocket. so i split into to sections weeks-with same weekNo and months and then sum each. well it did the job.
  7. broj1

    transpose textbox's horizontally?

    Help need it. I have a crosstab query. TRANSFORM Sum(Kontejner_sub.index_zahtevnosti_ctn) AS SumOfindex_zahtevnosti_ctn SELECT Kontejner_sub.index_zahtevnosti_ctn, Kontejner_sub.datum_zacetka, Projekt.prodajalec FROM (Kupec INNER JOIN Projekt ON Kupec.IdKupec = Projekt.IdKupec) INNER JOIN...
  8. broj1

    get just month and year from week number?

    It is like this; i have a combo with value list 1-52 - represent the weekno. when user selects it in a textbox i need to return a month and a current year for this. couse i need to pull and sum the data (to check free capacty ) for choosen week and month. So far all looks ok. The problem is in...
  9. broj1

    get just month and year from week number?

    thx for your reply. you have a point there. i didn't think about that. Function DateFromWeekNo(YearNo As Integer, weekno As Integer) Dim datDate As Date Dim temp As Date If IsMissing(YearNo) Then YearNo = Year(date) datDate = DateSerial(YearNo, 1, 1) + (weekno - 1) * 7 temp = datDate -...
  10. broj1

    get just month and year from week number?

    I have numbers 1-52 in combobox when number selected i would like in other textbox to return month & (system)year I have tried lots of variation with datediff, dateadd, and on forums i can find just to return specific date with week day also...but i don't need that. any idea? thx
  11. broj1

    zero to many relation?

    I would consider placing both a ProjectID and ContainerID field in the spare parts table. tblContainer would have a ProjectID. These "foreign" key fields could be blank. no it' can't be blank. have main form. On the main form i have 1. Listbox (Com_list) with all containers for that...
  12. broj1

    DateAdd fun. as default value on a bound txtbox?

    hi fellaz, i have been of for few days. Thanks for your replays. You are both right. I will try to work around this, but may need additional help later. I will let you know how it goes. thx
  13. broj1

    DateAdd fun. as default value on a bound txtbox?

    yes, sorry i wasn't clear! the code for dblcl event works, but my original idea is when new record is created, all fields are blank, couse all get values after txtbox1 is filled(with date picked from calendar) other let.us.say txtbox2 then should get defaullt value based on what is in txtbox1 --...
  14. broj1

    DateAdd fun. as default value on a bound txtbox?

    GingerR yes, this looks like a nice solution, but what about then when user inputs the date with the calendar ...whatever dates he inputs it has to be -2 days? What should i do then?
  15. broj1

    DateAdd fun. as default value on a bound txtbox?

    no, it doesn't allow me to put comma's, so i assume that semi-colons are fine (i don't get any error) it just don't display - nothing
  16. broj1

    DateAdd fun. as default value on a bound txtbox?

    the problem is: when i put this function on default control of txtbox = DateAdd("d";-2;[txtfield1]) it does nothing, but should get some date from txtfield1 -2. both txtboxes are bound, couse there have to be an option of manual entry
  17. broj1

    DateAdd fun. as default value on a bound txtbox?

    hi i have a bound txtfield1 where user enter date with calendar form then i have a txtfield2 where the default value should be = DateAdd("d";-2;[txtfield1]) but with possibility to enter date also with calendar form. It is bound control... so i guess that is why it is not working. How to change...
  18. broj1

    lots of combo's -better to have a value list or a table?

    yes, @Remou. I like the idea-it just might work. And a question before trying. Do you think this code will still work for cbo on notinlist event? Dim rsttabela As ADODB.Recordset Dim intAnswer As Integer intAnswer = MsgBox("Add " & NewData & " as new record?", _ vbQuestion +...
  19. broj1

    lots of combo's -better to have a value list or a table?

    i strongly agree with you...and my other project's followed that lead. But this one is somehow different. My problem is similar to this: let us say you try to sell custom cars. you offer client to pick up a part, up from many different parts from catalog, or make up his mind of his on (like...
  20. broj1

    zero to many relation?

    ok. Let us say then, i have just 3 tables tblProject, tblContainer, tblSpare_parts how to link this as described above? couse: tblSpare_parts is dependent of tblContainer and tblContainer is dependent of tblProject, also, tblSpare_parts is dependent of tblProject if there is no new container...

Part and Inventory Search

Back
Top