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 Mike Lewis 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. neualex

    Can Cisco 1811 router built-in firewall handle URLs?

    Hi folks, Is the Cisco 1811 router built-in firewall able to handle URLs? Otherwise, how do you guys allow your hosts to download security update from windowsupdate.microsoft.com? Please let me know. Thanks, ...Alex
  2. neualex

    OnFormat event in Report Detail not firing

    No, I don't. Is it required? So, if I have several conditions to do based on fields, I have to create dummy controls, bound them to the fields in question so I can use them with VBA? ...Alex
  3. neualex

    OnFormat event in Report Detail not firing

    Thank you! It worked! However, I wonder why the report is not printed nor displayed by using conditions on the Report-Detail events? Strange, don't you think? ...Alex
  4. neualex

    OnFormat event in Report Detail not firing

    Folks, I am using MSOffice 2010 (and I tried on MSAccess 2007 as well) and I have a really simple task on a report. Based on a field value, I changed the text on a couple of captions. Now, if I remove the field condition, the report gets printed, if I include it, the report seems to go to a...
  5. neualex

    WSS 3.0 / How to restore a site collection from a backup file created

    Hi folks, Interesting scenario I am faced with and I need your expertise/suggestions on how to best solve it. I backup all my web applications on a daily basis using the STSADM tool. Some web apps are less than 1GB, but one in particular is 7GB. I was able to restore the ~1GB web apps without...
  6. neualex

    Does XML.Load lock the XML file or create a copy in memory?

    So, it the entire XML file IS loaded in memory for manipulation? ...Alex
  7. neualex

    Does XML.Load lock the XML file or create a copy in memory?

    Hi folks, I'd like to double check if when running the LOAD method below, does the XML file get locked while the script is running or until myXML is set to NOTHING? Or LOAD makes a copy of the XML in memory to work with? Set myXML = CreateObject("Microsoft.XMLDOM") myXML.async = "false"...
  8. neualex

    Post file to Outlook Public Folders

    Guys, I spent almost 3 hours to come up with the code below :( I need to upload/post an HTML file to a public folder, so we can refer to it in emails with the following outlook path... outlook://Public Folders/All Public Folders/MCG/DTS Technical Contacts/~contact_list.html However, the code...
  9. neualex

    How to list all SharePoint databases

    SPWebServiceCollection webServices = new SPWebServiceCollection(SPFarm.Local); foreach (SPWebService webService in webServices) foreach (SPWebApplication webApplication in webService.WebApplications) foreach (SPSite siteCollection in...
  10. neualex

    Open source TIFF library

    Hi guys, I need to split a multipage TIFF file to single TIFF files from C#, does anyone know a free, open source TIFF library which can do the job? Thanks! :) ...Alex
  11. neualex

    How to list all SharePoint databases

    Thanks! I ended up in the Central Administration page since I didn't find a way to list all databases. You can programatically list all web apps, site collections, subsites, if you need the code, just let me know. ...Alex
  12. neualex

    How to list all SharePoint databases

    Hi guys, Does anyone know how to list all SP databases programmatically (.net) as the Central Administration / Operations / Perform Backup page does? Hope you can help! Thanks, ...Alex
  13. neualex

    Heading in Quick Launch to show Announcement-type lists

    Hi guys, I created a new heading in the quick launch to show all the announcements-type lists only, but I can't get the right parameters. I tried all the BaseType values (0, 1, 2, 3 and 4) with no luck. <site>/_layouts/viewlsts.aspx?BaseType=0 I even tried with the Type parameter as detailed...
  14. neualex

    Set and get checkbox value in GridView

    Do you have any code sample for this or a link? I'd appreciate it. ...Alex
  15. neualex

    Set and get checkbox value in GridView

    Hey guys...I am having a hard time figuring this out. I need to display a list of books in a GridView and allow the user to download them. I got everything working except the checkbox thing...I can display it on a respective column, but how can I set the value the checkbox holds, since I need to...
  16. neualex

    Backup kills the server NIC connection

    Hey guys, not sure if my problem has happened to you or not, but here it goes... We have a WSS 3 x64 bit farm, 2 FE, 1 BE, and dedicated SQL server -all VM servers. The backup script (EXE written in C#) backup all web apps (total of 9 so far) one by one to a remote file server. On random...
  17. neualex

    Filter datagrid with multiple values

    Ryan, Yes, thank you. What I am looking for is suggestions if this is the best way to handle this multiple-value filter. ...Alex
  18. neualex

    Filter datagrid with multiple values

    Hi guys, I have a table as below: SERVERNAME STATUS ...where STATUS can be multiple values from another table (PRODUCTION, DEVELOPMENT and RETIRED) So, I have this ASP.net page where I display 3 checkboxes (one per status) where the user can filter the list based on multiple values. How would...
  19. neualex

    How to get the number of users displayed on the Site Collection Usage

    niceguymattx, thanks! The article helped! ...Alex
  20. neualex

    How to get the number of users displayed on the Site Collection Usage

    Hey guys, I am trying to pull all the information displayed on the Site Collection Usage Summary page (_layouts/usage.aspx), and so far I was able to get all from the SPSite.UsageInfo class. However, I cannot find how to pull the "number of users" :( Any idea? Thanks, ...Alex

Part and Inventory Search

Back
Top