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 Chriss Miller 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 DotNetGnat

  1. DotNetGnat

    Programmatically set sharepoint group owner

    Hello All, Could someone please provide some sample code that demostrates the following. I am trying to set sharepoint group mygroup1 as a owner of the newly created sharepoint group mygroup2. I know how to set users and members...but I am not sure how to set a group as a owner of another...
  2. DotNetGnat

    site template to use for knowledge mining

    Hello All, Which template should I use for Knowledge Mining – where each user defines their own subjects of expertise and can be effectively searched for based on skill and skill level. Thanks for any suggestions... -DNG
  3. DotNetGnat

    showing loding image...

    thanks for the suggestions guys... Jason, I am not a web developer. I always frame questions in a easy way in order to get some ideas... Thanks again... -DNG
  4. DotNetGnat

    showing loding image...

    Guys, I am opening a new page on a button click event to show the search results. This new window comes up blank not giving the user any obvious message to the user that the process is running...sometimes the page takes 30 seconds to load... I was wondering what is the easiest way to show/hide...
  5. DotNetGnat

    unable access MasterPage member

    I just used FindControl and it worked fine for me... also page inheritance is little complicated in VB.net project that I am currently working with...so thats the reason I was getting member not found error... Thanks -DNG
  6. DotNetGnat

    unable access MasterPage member

    Guys, I have this working in C# project but not in VB project... in the MasterPage.master.vb file, I have Public Overridable ReadOnly Property MainBody() As HtmlGenericControl Get Return Me.maintop End Get End Property in the content page, I am trying to...
  7. DotNetGnat

    extract data from xml

    Thanks Patrick. There is no method called SelectNode. There are SelectNodes and SelectSingleNode methods that I am looking into. -DNG
  8. DotNetGnat

    extract data from xml

    Guys, Need some help on parsing xml file. Below is the line I have in my code: XmlNodeList xmlnode = xmldoc.GetElementsByTagName("G_NEW_DATE"); and the outerxml that I get looks like below for xmlnode[i].OuterXml <G_NEW_DATE> <DAY>THURSDAY</DAY> <LIST_G_CAT> <G_CAT> <1MONTH>100</1MONTH>...
  9. DotNetGnat

    reading xml file

    Guys, Need some help on parsing xml file. Below is the line I have in my code: XmlNodeList xmlnode = xmldoc.GetElementsByTagName("G_NEW_DATE"); and the outerxml that I get looks like below for xmlnode[i].OuterXml <G_NEW_DATE> <DAY>THURSDAY</DAY> <LIST_G_CAT> <G_CAT> <1MONTH>100</1MONTH>...
  10. DotNetGnat

    Get Third Friday of a month

    here is what I did: public static DateTime GetThirdFriday(DateTime sdate) { DateTime thirdFriday = new DateTime(sdate.Year, sdate.Month, 1); while (thirdFriday.DayOfWeek != DayOfWeek.Friday) { thirdFriday = thirdFriday.AddDays(1); }...
  11. DotNetGnat

    Get Third Friday of a month

    Hi Guys, Ignore this post. I figured how to find the third friday of the month. Let me know if someone needs it. Thanks for looking... -DNG
  12. DotNetGnat

    Get Third Friday of a month

    Hello Given a date. How can we get third friday of that month. Any suggestions.. -DNG
  13. DotNetGnat

    add calculated column to datatable

    Thank you Jason...with little tweaking it worked fine... ca8msm, thanks for the info. -DNG
  14. DotNetGnat

    add calculated column to datatable

    by the way the datatable I generating is sorted by date asc... -DNG
  15. DotNetGnat

    add calculated column to datatable

    thanks for your input. I also intially thought of doing this at the database level but later changed my mind. Currently in my web app, I generate Datatable on the fly specific for each user based on their inputs. If I could save this table on the database and run sp's on it and return calculated...

Part and Inventory Search

Back
Top