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

  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
  16. abdhab

    ctpmon.exe

    hi each time i open the command prompt (using the shortcut in the Accessories menu, or using the run command) i got the command prompt opened, with a windows error message with title ctpmon.exe and a text about restarting the computer.. few seconds my computer restarts automatically any1 have an...
  17. abdhab

    ASPNET account

    i fixed it (i just deleted the link..) and now it is working thanks ca8msm, hope i can now have a good start
  18. abdhab

    ASPNET account

    ok i read the forms authentication articles, and this is what i need.. well i started with the example in that article and when it came to testing the example, i got the following error: Error 29 Namespace of 'http://schemas.microsoft.com/.NetConfiguration/v2.0:configuration' on configuration...
  19. abdhab

    ASPNET account

    i think there is no need for windows authentication.. i ll take a look on the article, it seems a good one, and then i ll get back to u. thanks for ur support
  20. abdhab

    ASPNET account

    well am starting localy on the network, but i ll upload it later the purpose is just to learn asp.net

Part and Inventory Search

Back
Top