Forum: C# Aug 7th, 2009 |
| Replies: 4 Views: 408 Its not a good idea to have source code sent via email. Please answer everything here in this community, let others also learn. :) |
Forum: C# Aug 6th, 2009 |
| Replies: 5 Views: 343 wpf (http://en.wikipedia.org/wiki/Windows_Presentation_Foundation)
wcf (http://en.wikipedia.org/wiki/Windows_Communication_Foundation)
wwf (http://en.wikipedia.org/wiki/Windows_Workflow_Foundation) |
Forum: C# Jul 23rd, 2009 |
| Replies: 2 Views: 443 do in this way:
...............
Object x;
x = s.Pop();
ArrayList al=x as ArrayList ;
if(al!=null)
{
al.Add("Something");
} |
Forum: C# Jul 23rd, 2009 |
| Replies: 5 Views: 437 Hi,
Read example here (http://msdn.microsoft.com/en-us/library/system.data.oledb.oledbdatareader(VS.71).aspx). It will help you. You have to call dataReader4.Read() before reading it. If still... |