Search results

  1. J

    Can't create any more controls

    Yes, thanks, ColinEssex, I just did't know it's possible. ;)
  2. J

    Can't create any more controls

    Ha, it's a spreadsheet control. It solves everything. ;) Why didn't you tell me this, seniors? ;)
  3. J

    Can't create any more controls

    You just can't figure out what I'm asking, "programmers". Ok, you're of course good programmers, but not good on perception. You're too good programmers, maybe and can't figure simple things ;D I have all the tables, and it all works just perfect. What I wanted is, to make a main form where I...
  4. J

    Can't create any more controls

    gh, i don't take others work and take it to mine, it is just a picture of what i want to make. that picture is all i have of your "someone elses hard work" ;D . and i already made all i needed just with less controls, Col1-Col17 (two weeks insted of a month). And i never said I'm something of a...
  5. J

    Can't create any more controls

    Did You read my lates reply? - What I'm trying to make is a table with 26 rows and 33 columns. That's 858 labels (controls) The column Col1 goes for room numbers in a hotel. The column Col2 goes for room cathegory, and columns Col3 to Col33 goes for dates of a month. Rows R2 to R26 goes for...
  6. J

    Can't create any more controls

    what subject?? there's no subject ;D
  7. J

    Can't create any more controls

    Well, thank you for answering but.. I need about 850 controls on this form. So, there's no way, I could make it? What I'm trying to make is a table with 26 rows and 33 columns. That's 858 labels (controls) :( The column Col1 goes for room numbers in a hotel. The column Col2 goes for room...
  8. J

    Can't create any more controls

    When I try to make a control it gives me this error: "Microsoft Access can't create any more controls on this form or report. If you have deleted controls from this form or report in the past, you may be able to rename the form or report and then add more controls to it." I tried to rename the...
  9. J

    For i = 1 to 100 Next i problem

    Private Sub btnshod_Click() Dim di For di = 1 To 27 Me("d" & di + 5).Caption = Left(Date + di, 2) Next di End Sub found it by myself, never mind ;)
  10. J

    For i = 1 to 100 Next i problem

    If my labels' names are d1, d2, d3, etc.., how should I handle this? 4th row needs to be handled differently, but how? Private Sub btnshod_Click() Dim di For di = 1 To 27 Me!d & (di + 5) &.Caption = Left(Date + di, 2) Next di End Sub
  11. J

    Drop-down menus

    heh, nevermind, I found it ;)
  12. J

    Drop-down menus

    Is there any way to replace the default access "File", "Edit", "View",.. drop-down menus with my own?
  13. J

    current record control

    Never mind, I managed it ;))
  14. J

    current record control

    Tnx, it works ;) Can you tell me another one: DoCmd.GoToRecord , , acNewRec DoCmd.GoToControl Me.txtcontrol1 Here, I want that on button btnNewRec click the control txtcontrol1 to be active, but this code gives me an error. What is wrong here?
  15. J

    current record control

    How can I get a current record showed in a textbox? I know, it's kinda simple: txtbox1 = Me.CurrentRecord But, where should I put the code, so that it would update on every buttons press, on every TAB press etc?
  16. J

    Make controls visible/invisible

    Wonderful :)
  17. J

    Open subform with a button

    Good, this one works, thank you ;) Private Sub btnIenaakumi_Click() Me!subf.Visible = True Me!subf.SourceObject = "SubfIenaakumi" Forms!Index!subf.SetFocus End Sub
  18. J

    Open subform with a button

    Well, since I need 5 subforms in the same place, it would be a confusion to work. Isn't it possible to place a variable behind subforms Source Object somehow?
  19. J

    Open subform with a button

    Hi! Seems like a simple thing but I do not know, how to make it. Well, I have an index form with a set of buttons. On pressing a button I want a subform to come up with another set of buttons according to the button pressed in an index form. And I want there a subform with no buttons when an...
  20. J

    Two SELECT statements in one query

    Wow, many thanks ;) It all cames out just so simple ;)
Back
Top Bottom