Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+7
Strength to Decrease Rep
-1
56% Quality Score
Upvotes Received
8
Posts with Upvotes
8
Upvoting Members
8
Downvotes Received
7
Posts with Downvotes
7
Downvoting Members
6
5 Commented Posts
0 Endorsements
Ranked #607
~44.0K People Reached
Favorite Tags

116 Posted Topics

Member Avatar for hitro456

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.

Member Avatar for Raj_28
0
4K
Member Avatar for Begginnerdev

Hi, Check out this article: [url]http://www.codeproject.com/KB/list/PrintableListView.aspx[/url] HTH

Member Avatar for Ivan_14
0
6K
Member Avatar for Nada_ward

You can use SqlDataReader. Check the following article for more info: [url]http://www.startvbdotnet.com/ado/sqlserver.aspx[/url] Regards,

Member Avatar for Karthic_1
0
2K
Member Avatar for riteshsingh_22

You can check the following article about this: [url]http://support.microsoft.com/kb/307598[/url] Hope it helps.

Member Avatar for annaharris
0
342
Member Avatar for Behseini

Hi Behseini, See the thread here: [url]http://www.vectorlight.net/forums/liquid_richtext/542-how_to_inserttable_in_richtextbox.aspx[/url] HTH

Member Avatar for rajeev_cv_2012
0
197
Member Avatar for catherine sea

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 …

Member Avatar for carrzkiss
0
9K
Member Avatar for JOSheaIV

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.

Member Avatar for JOSheaIV
0
259
Member Avatar for chaitali238

[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,

Member Avatar for desynch
0
124
Member Avatar for Mahesha999
Member Avatar for danielbala

You can find a simple sample here: [url]http://www.homeandlearn.co.uk/php/php4p10.html[/url]

Member Avatar for diafol
0
124
Member Avatar for virusisfound

Hi Virusisfound, Check out the sample here: [url]http://www.codeproject.com/KB/applications/SimpleChat.aspx[/url] HTH

Member Avatar for virusisfound
0
129
Member Avatar for mirzamujib
Member Avatar for mardTanha
Member Avatar for srm2010
Member Avatar for kshahnazari

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]

Member Avatar for catherine sea
0
88
Member Avatar for lxXTaCoXxl

Check this step by step guide: [url]http://www.codeproject.com/KB/miscctrl/cutebutton.aspx[/url]

Member Avatar for catherine sea
0
85
Member Avatar for berniefitz
Member Avatar for catherine sea
0
64
Member Avatar for Alex12345

Try like this: [CODE]$query = mysql_query("SELECT * FROM posts WHERE section='Books'") while ($row = mysqli_fetch_assoc($query)){ printf($row['title']); } [/CODE]

Member Avatar for phorce
0
99
Member Avatar for murithi
Member Avatar for catherine sea
0
92
Member Avatar for owaisbashir

Check out this one: [url]http://quickstarts.asp.net/QuickStartv20/default.aspx[/url]

Member Avatar for naveedqadri
0
354
Member Avatar for ng5

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]

Member Avatar for codeorder
0
247
Member Avatar for aishapot
Member Avatar for YungSoprano
Member Avatar for mr1991
Member Avatar for aishapot

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]

Member Avatar for aishapot
0
255
Member Avatar for phoenix911

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]

Member Avatar for phoenix911
0
193
Member Avatar for Woodenhousen

If you run the query for "ManufacturerID = " + comb1 in SQL Server Management Studio, can you get the result successfully?

Member Avatar for catherine sea
0
121
Member Avatar for techlawsam
Member Avatar for mehdi.yazdani

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

Member Avatar for mehdi.yazdani
0
105
Member Avatar for mehdi.yazdani
Member Avatar for cereal
0
167
Member Avatar for Dani
Member Avatar for Dani
0
111
Member Avatar for Shwetha Dali

Hi Shwetha, Not sure what's your requirement. Do you mean you want to keep the data in Login page after you reopen it?

Member Avatar for Sarama2030
-1
120
Member Avatar for adeelfayyaz

[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 …

Member Avatar for Sarama2030
0
336
Member Avatar for lianpiau

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]

Member Avatar for lianpiau
0
83
Member Avatar for GuruJin

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.

Member Avatar for GuruJin
0
147
Member Avatar for Romil797

Check out this: [url]http://stackoverflow.com/questions/905387/calling-a-vb-net-function-from-javascript[/url]

Member Avatar for catherine sea
0
67
Member Avatar for jtodd

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]

Member Avatar for jtodd
0
3K
Member Avatar for naveedqadri
Member Avatar for crishlay
0
184
Member Avatar for derpmufc

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 …

Member Avatar for Momerath
0
115
Member Avatar for Rohan rawat

You can check the article on how to convert the date format:[url]http://www.sql-server-helper.com/tips/date-formats.aspx[/url]

Member Avatar for catherine sea
0
165
Member Avatar for daniahmed

Try changing [CODE]echo "<td>" . $row['UnitPrice']*['Quantity'] . "</td>";[/CODE] to [CODE]echo "<td>" . $row['UnitPrice']*$row['Quantity'] . "</td>";[/CODE]

Member Avatar for daniahmed
0
135
Member Avatar for london-G

Check out the sample here: [url]http://www.sutanaryan.com/blog/web-development/php-and-mysql-sign-up-page[/url] HTH

Member Avatar for Stefano Mtangoo
0
118
Member Avatar for vistriv5
Member Avatar for pawan768

Have a look at the sample here: [url]http://roshanbh.com.np/2008/04/ajax-login-validation-php-jquery.html[/url] HTP

Member Avatar for stbuchok
0
307
Member Avatar for pavankumarr

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]

Member Avatar for catherine sea
0
112
Member Avatar for bfitz
Member Avatar for bfitz
0
220
Member Avatar for happyns

Check out the thread here: [url]http://stackoverflow.com/questions/1436677/tortoisesvn-api-for-c-net[/url]

Member Avatar for catherine sea
0
50
Member Avatar for super9876

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]

Member Avatar for super9876
0
168
Member Avatar for nickg21

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]

Member Avatar for MeSampath
0
272
Member Avatar for bwls

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]

Member Avatar for catherine sea
0
109

The End.