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!

Recent content by abdhab

  1. abdhab

    folder "sites"

    i have a silly question: what is the use for the folder called "sites" in sharepoint services? is it only to organize the sites documents? can't the site be on the root directly?
  2. abdhab

    urgent: responding to surveys

    Hi, i am new to this sharepoint.. I have a sharepoint survey in my site team, i want all other authenticated users on the domain to respond to the survey, without letting them see all the survey results or anything else in the site.. i have full control on the site can i have any suggestions...
  3. abdhab

    important

    hi the company i work in bought the MS Windows Sharepoint, so that we can use it for websites and data forms.. i know nothing about this Sharepoint.. can any1 suggest where to start from?
  4. abdhab

    hide detail using sub

    Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer) If (name = ".") Then Me.Detail.Visible = False Else Me.Detail.Visible = True End If End Sub
  5. abdhab

    hide detail using sub

    i am trying to hide a detail record using the following sub Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer) If (Me.name = ".") Then Me.Detail.Visible = False Else Me.Detail.Visible = True End If End Sub but it is not working, i always get all the detail records as if there...
  6. abdhab

    Report parameter

    done thank you
  7. abdhab

    Report parameter

    ok done just edited the code Me.id.SetFocus var = Me.id.Text DoCmd.OpenReport stDocName, acPreview, , "id = " + var
  8. abdhab

    Report parameter

    ok thanks, this is what i need i tried it like the following: Me.id.SetFocus DoCmd.OpenReport stDocName, acPreview, , "id" = Me.id.Text but it gave me a report with no data am i missing something?
  9. abdhab

    Report parameter

    is there a way to add a parameter to a report, so i can only view data which match my parameter criteria? i know it can be done easily with a query.. the problem is i already finished the design of the report and it really took a lot of time, i dont wanna redo the same report for a new query...
  10. abdhab

    customizing table limit

    is it the only solution? is there any feature or option inside sql server where u can put the maximum number of records?
  11. abdhab

    customizing table limit

    hi is it possible to make a limit to a table in sql server? (a maximum number of records) thanks
  12. abdhab

    How do I return the name (ID) of the User Control that Raised an Event

    i found in the forum ((Button)sender).ID thanks
  13. abdhab

    How do I return the name (ID) of the User Control that Raised an Event

    How do I return the name (ID) of the User Control that Raised an Event?
  14. abdhab

    Control's "Me"

    i found it Screen.ActiveControl.Name
  15. abdhab

    Control's "Me"

    usually instead of using the form name we can use the "Me" whatif i m inside a control sub and want to use the control name, what do i use other than its name? is there a specific "Me" for the control thank you

Part and Inventory Search

Back
Top