Forum: Windows NT / 2000 / XP Aug 8th, 2009 |
| Replies: 3 Views: 364 The settings will be applicable to Admin user only. It will not affect anything to other users of your system. |
Forum: C Jul 8th, 2009 |
| Replies: 11 Views: 593 Buddy, if he start from 30 in reverse order, then also he need to check if the value is between 3 and 30 or not. This will only increase the confusion.. |
Forum: ASP.NET Jun 16th, 2009 |
| Replies: 3 Views: 723 View state is to store information temporarily. The life time is limited to the life time of the particular page. It is generally used to store the page fields.
Application state is global to the... |
Forum: Windows NT / 2000 / XP Jun 15th, 2009 |
| Replies: 2 Views: 393 As per the standard, audio output jack's color is light green. You check the speaker is connected with light green jack or not.
plus navigate here. Start => Control Panel => Administrative Tools... |
Forum: VB.NET Jun 15th, 2009 |
| Replies: 16 Views: 747 I think your SQL string is not well formatted. This is correct, I think.
com.CommandText = "insert into Watches values(" & txtWatchId.Text & ",'" & txtWatchBrand.Text & "','" & _... |
Forum: C# Jun 14th, 2009 |
| Replies: 16 Views: 885 Store a string in a string variable and then use this code.
string todelimit="";
string[] sep= {","};
string[] stringarray = todelimit.Split(sep, StringSplitOptions.None);
string... |
Forum: C# Jun 14th, 2009 |
| Replies: 3 Views: 1,034 C# get and set are accessors and are used in Indexers and Properties. These allows to set or fetch the value stored in the private class members. Refer... |
Forum: ASP.NET Jun 14th, 2009 |
| Replies: 4 Views: 976 When you say I have "visual studio 2008 express" then I assume that you have a collection of all Express editions. Microsoft is providing ISO image of all these applications and the visual web... |
Forum: ASP.NET Jun 14th, 2009 |
| Replies: 4 Views: 976 There is no Visual Studio Express as far as I know. Microsoft has launched Visual Studio Express Editions in which VC# Express, VB.NET express, Visual Web Developer Express, etc are included.... |
Forum: MySQL Jun 12th, 2009 |
| Replies: 5 Views: 584 I think there is no other way in SQL to fetch the results in alphabetical order other than the "ORDER BY" phrase. |
Forum: ASP.NET Jun 12th, 2009 |
| Replies: 6 Views: 685 This should resolve the problem.
Visual Studio => Tools => Options => Database Tools => Design Time - Validation Database => Connection options
Set the sql server instance name to Blank. ... |
Forum: C# Jun 11th, 2009 |
| Replies: 16 Views: 885 You can read read the whole set of data returned by the SQL query row by row if you use OleDbDataReader.
You select a row, get the string from the required column and then split that string in... |
Forum: ASP.NET Jun 11th, 2009 |
| Replies: 4 Views: 1,638 itextsharp is a good option. You may check the sample code here.
http://ask4asp.net/post/creating-PDF-using-NET-itextsharp-component-vb-NET.aspx |