- Strength to Increase Rep
- +7
- Strength to Decrease Rep
- -1
- Upvotes Received
- 8
- Posts with Upvotes
- 8
- Upvoting Members
- 8
- Downvotes Received
- 7
- Posts with Downvotes
- 7
- Downvoting Members
- 6
116 Posted Topics
Re: You may check the posts here and see it is helpful for you: [url]http://www.bigresource.com/Tracker/Track-ms_sql-8xeNr2qA/[/url] Thanks. | |
Re: Hi, Check out this article: [url]http://www.codeproject.com/KB/list/PrintableListView.aspx[/url] HTH | |
Re: You can use SqlDataReader. Check the following article for more info: [url]http://www.startvbdotnet.com/ado/sqlserver.aspx[/url] Regards, | |
Re: You can check the following article about this: [url]http://support.microsoft.com/kb/307598[/url] Hope it helps. | |
Re: Hi Behseini, See the thread here: [url]http://www.vectorlight.net/forums/liquid_richtext/542-how_to_inserttable_in_richtextbox.aspx[/url] HTH | |
Hi, I got error "No value given for one or more required parameters" error when executing the following code. I checked the value of the query and it seems correct. Does anyone know why? [CODE]string connectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\\Users\\Catherine\\Documents\\LearningCSharp.accdb"; OleDbConnection myConnection = new OleDbConnection(connectionString); myConnection.Open(); int employeeNumber = int.Parse(textBox1.Text); string name … | |
Re: You may install SQL Server Express on your machine for the demo purpose. Check out this article on how to use it in your app: [url]http://msdn.microsoft.com/en-us/library/dd981032(v=SQL.100).aspx[/url] Hope it helps. | |
Re: [QUOTE]Though the file uploaded can be seen through windows explorer, it is not shown in solution explorer.[/QUOTE] Do you mean the file can be seen in the corresponding local path of the solution? If so, try refreshing the solution explorer and see if it appears. Regards, | |
Re: What's the root folder for your web server? The path seems wrong. | |
Re: You can find a simple sample here: [url]http://www.homeandlearn.co.uk/php/php4p10.html[/url] ![]() | |
Re: Hi Virusisfound, Check out the sample here: [url]http://www.codeproject.com/KB/applications/SimpleChat.aspx[/url] HTH | |
Re: On which line of code do you get the error? | |
Re: Hi mardTanha, Do you get any error with the code? | |
| |
Re: Hi kshahnazari, Check out this article and see if it helps. [url]http://blogs.microsoft.co.il/blogs/tamir/archive/2008/02/17/sound-tone-and-dtmf-generation-by-using-managed-directsound-and-c-and-sine-tone-detection-with-pure-managed-goertzel-algorithm-implementation.aspx[/url] | |
Re: Check this step by step guide: [url]http://www.codeproject.com/KB/miscctrl/cutebutton.aspx[/url] | |
Re: Maybe the external IP server can't parse the GUID query? permission issue? | |
Re: Try like this: [CODE]$query = mysql_query("SELECT * FROM posts WHERE section='Books'") while ($row = mysqli_fetch_assoc($query)){ printf($row['title']); } [/CODE] | |
Re: Check out this one: [url]http://pinoy-brownbag.blogspot.com/2011/07/jqgrid-in-aspnet-mvc3-code-first.html[/url] HTH | |
Re: Check out this one: [url]http://quickstarts.asp.net/QuickStartv20/default.aspx[/url] | |
Re: You may check out the manual below on how to work with arrays in VB.NET [url]http://msdn.microsoft.com/en-us/library/wak0wfyt.aspx[/url] | |
Re: Are the field types consistent with the code? | |
Re: Hi Yung, What is the error message? | |
Re: It would be helpful if you can paste the related code. | |
Re: check out the following thread: [url]http://stackoverflow.com/questions/5033634/vb-net-insert-retreive-picture-from-mysql-database-directly-to-from-a-pictureb[/url] | |
Re: You may check the thread below about the timeout settings on the client and server sides. Hope it helps. [url]http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/84551e45-19a2-4d0d-bcc0-516a4041943d/[/url] | |
Re: If you run the query for "ManufacturerID = " + comb1 in SQL Server Management Studio, can you get the result successfully? | |
Re: It means [CODE]total = total + nValue;[/CODE] | |
Re: The possible cause of the issue should be the size limit on your server side. You can change the value at the following line in the php.ini file and try again. upload_max_filesize = 20M | |
Re: Which PHP version are you using? It's possible that the version is too low. | |
Re: Hi Shwetha, Not sure what's your requirement. Do you mean you want to keep the data in Login page after you reopen it? | |
Re: [QUOTE]Fundamentally an ASP.NET page is just the same as an HTML page. An HTML page has the extension .htm. If a browser requests an HTML page from the server, the server sends the page to the browser without any modifications. An ASP.NET page has the extension .aspx. If a browser … | |
Re: Try the following sample: [CODE]string finalstr = "Cust/00000"; for (int i = 0; i < 10; i++) { string val = finalstr.Substring(5, finalstr.Length - 5); int newnumber = Convert.ToInt32(val) + 1; finalstr = "Cust/" + newnumber.ToString("00000"); }[/CODE] | |
Re: Hi Guru, Check the answers here: [url]http://stackoverflow.com/questions/5193752/db-cannot-be-opened-because-it-is-version-655-this-server-supports-version-612[/url] Good luck. | |
Re: Check out this: [url]http://stackoverflow.com/questions/905387/calling-a-vb-net-function-from-javascript[/url] | |
Re: Here is a C# sample for your reference: [CODE]using System.Data.OleDb; OleDbConnection conn = new OleDbConnection(@"Provider = Microsoft.Jet.OLEDB.4.0;User Id=;Password=;Data Source=" + fileName); conn.Open(); OleDbDataAdapter dataAdapter = new OleDbDataAdapter(query_txt.Text, conn); DataSet ds = new DataSet(); dataAdapter.Fill(ds); dataGridView.DataSource = ds.tables[0]; conn.Close();[/CODE] | |
Re: Check the answers here: [url]http://forums.asp.net/t/1253457.aspx/1[/url] HTH | |
Re: You can create an array of arrays like this: [CODE]int[] list1 = new int[4] { 1, 2, 3, 4}; int[] list2 = new int[4] { 2, 3, 4, 5}; int[] list3 = new int[4] { 1, 3, 2, 1 }; int[] list4 = new int[4] { 5, 4, 3, 2 … | |
Re: You can check the article on how to convert the date format:[url]http://www.sql-server-helper.com/tips/date-formats.aspx[/url] | |
Re: Try changing [CODE]echo "<td>" . $row['UnitPrice']*['Quantity'] . "</td>";[/CODE] to [CODE]echo "<td>" . $row['UnitPrice']*$row['Quantity'] . "</td>";[/CODE] | |
Re: Check out the sample here: [url]http://www.sutanaryan.com/blog/web-development/php-and-mysql-sign-up-page[/url] HTH | |
Re: You may paste your current code and explain the issue and see if we can help. | |
Re: Have a look at the sample here: [url]http://roshanbh.com.np/2008/04/ajax-login-validation-php-jquery.html[/url] HTP ![]() | |
Re: Hi Pavan, You can use DayOfWeek Property and TimeOfDay Property to get the week day and time. [url]http://msdn.microsoft.com/en-us/library/system.datetime.aspx[/url] | |
Re: Hi Bernie, Can you paste your code here? Where do you host your files? | |
Re: Check out the thread here: [url]http://stackoverflow.com/questions/1436677/tortoisesvn-api-for-c-net[/url] | |
Re: I saw a sample on the page blow. Have a look and see if it helps. [url]http://www.tizag.com/mysqlTutorial/mysql-time.php[/url] | |
Re: Hi NickG, Check out the posts here and see if it helps solving your problem. [url]http://forums.asp.net/t/1126914.aspx/1[/url] | |
Re: Hi Bill, Try the solution here and see if it solves your problem. [url]http://www.cryer.co.uk/brian/mswinswdev/ms_vbnet_vb_not_configured_as_app.htm[/url] |
The End.