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

  • Users: s2001
  • Order by date
  1. s2001

    BC30456: 'DataItem' is not a member of 'System.Web.UI.Control'.

    I am getting compilation error (bold line): BC30456: 'DataItem' is not a member of 'System.Web.UI.Control'. -- I am using ASP.NET 2.0 - w/AJAX 2.0 Extension. -- I am binding the gridview with mysql data. Gridview1.datasource = prod.GetData() -- returns datatable Gridview1.databind The problem...
  2. s2001

    Recommendation

    Guys, I am planning to run mysql community server 5.1 on a linux box. Can you guys recommend me linux flavor that i should use? Could you please share your experience? TIA Thanks, Murali Bala http://www.itmodule.com
  3. s2001

    Possible to execute several SQL Statements at one time with MYSQL?

    i don't think you can submit multiple queries in one shot in mysql. you can do that using sql server though. I think that how mysql api works. Thanks, Murali Bala http://www.itmodule.com
  4. s2001

    SMS send and receive

    Guys, Was not sure if i am posting it in the right forum. I tried to search for SMS texting forum but could not find one. What i want to know is how do i send and recieve text messages? Like setting up SMS Server, SMS number that users can use to send messages, etc. Pease point me in the...
  5. s2001

    Threadin issue

    Thanks. Will do Thanks, Murali Bala http://www.itmodule.com
  6. s2001

    Threadin issue

    Hello All, I am having problem sharing information between two threads. -- Thread 1 -- Reads value (calls ReadVal) from the Hashtable. -- Thread 2 -- Adds value (calls Add) to the Hashtable. What is happening is when i read the value, i get the exception : Collection was modified...
  7. s2001

    Hello All, I have the following

    Hi Christiaan, Thanks a lot for your response. I will run mem profiler and check it out. I do not have much code in the loop. I am setting _Html variable with data from a function and passing it on to the writer. Thanks, MB
  8. s2001

    Hello All, I have the following

    Hi Christiaan, but the code has the using{} block, which should automatically dispose the object (mark it free for gc to collect).. am i missing something.. thanks a lot to you guys for your responses.. Thanks, MB
  9. s2001

    Hello All, I have the following

    Hello All, I have the following line of code that creates text file. The problem is after about 5000+ recursion, i get StackOverflowException. Could you guys suggest me an alternative way or problem with the code? TIA try { using (TextWriter tw = new...
  10. s2001

    System.OutOfMemoryException

    Thanks a log guys. That works. I went through all the object that expose IDisposable and disposed them. Thanks, MB
  11. s2001

    System.OutOfMemoryException

    Thanks guys. I will implement the advice and get back to you. Thanks, MB
  12. s2001

    System.OutOfMemoryException

    Hello All, I am getting the following error: Exception of type 'System.OutOfMemoryException' was thrown. I have the following recursive procedure: private void doloop() { //i get the error here string mytext=GetPages(); //call to another proc to do some work ProcessText(mytext)...
  13. s2001

    VB.NET like equivalent

    Thank you so much Thanks, MB
  14. s2001

    VB.NET like equivalent

    C# does not have VB.NET 'like' equivalent For example in VB.NET, we can do this: Dim mystr as string = "helloworld" If mystr Like "*rld" Then found = True else found =false End If What would be the best way to do it in C#? Any help would be highly appreciated. Thanks, MB
  15. s2001

    User control - drop down property

    Thank you very much. I forgot to mention that i want to tie the list with rows coming out of a data table. Thanks, MB
  16. s2001

    User control - drop down property

    Hello All, I have written a class library that extends textbox control. I am using the new extended control to do security validation. What i want to do is to have a drop-down show up in the property window for one of the new field. For example: --I have a property called Select Role...
  17. s2001

    comment in VB2005

    duh...thnx a lot... Thanks, MB
  18. s2001

    comment in VB2005

    Also, i do not have right click insert comment. Thanks, MB
  19. s2001

    comment in VB2005

    in a class. Example: Imports Microsoft.VisualBasic Imports System.Data Public Class User Public Function CreateUserAccount(ByVal username As String, ByVal password As String, ByVal emailaddress As String) ''' End Function End Class Thanks, MB
  20. s2001

    comment in VB2005

    hi chris, thanks for the reply. It does not work for me. I am using vb2k5. Are you using some add-in? Thanks, MB

Part and Inventory Search

Back
Top