Posts
 
Reputation
Joined
Last Seen
Ranked #586
Strength to Increase Rep
+6
Strength to Decrease Rep
-1
82% Quality Score
Upvotes Received
14
Posts with Upvotes
13
Upvoting Members
12
Downvotes Received
3
Posts with Downvotes
3
Downvoting Members
3
11 Commented Posts
2 Endorsements
Ranked #621
Ranked #818
~172.31K People Reached
Favorite Tags
Member Avatar for samaru
Member Avatar for vegaseat

“We are what our thoughts have made us; so take care about what you think. Words are secondary. Thoughts live; they travel far.” - Swami Vivekananda -

Member Avatar for Reverend Jim
15
13K
Member Avatar for yossi321
Member Avatar for yossi321
0
104
Member Avatar for debasisdas

Think left and think right and think low and think high. Oh, the thinks you can think up if only you try ! - Dr. Seuss

Member Avatar for James_28
8
16K
Member Avatar for natsume57
Member Avatar for Doctor Inferno
Member Avatar for twigan1015

Adding 7 nos. textbox's text into a listbox [CODE] lstAlbums.Items.Add(Form1.textbox1.text.ToString) lstAlbums.Items.Add(Form1.textbox2.text.ToString) lstAlbums.Items.Add(Form1.textbox3.text.ToString) lstAlbums.Items.Add(Form1.textbox4.text.ToString) lstAlbums.Items.Add(Form1.textbox5.text.ToString) lstAlbums.Items.Add(Form1.textbox6.text.ToString) lstAlbums.Items.Add(Form1.textbox7.text.ToString) [/CODE] For saving a listbox item into a text file [CODE] 'for saveing listitem into text file Dim Objfile As New System.IO.StreamWriter("C:\TestText.txt") Dim intCounter As Long For intCounter = 0 To lstAlbums.Items.Count - 1 …

Member Avatar for tdeath
0
2K
Member Avatar for P.manidas
Member Avatar for P.manidas

Dear sir/Madam, In my codes CmdDisplay button display only first record from the table and button2 add the all name (Ename field) to combobox1 from the table. How can i show FirstRecord, PreviousRecord, NextRecord and LastRecord using OleDbCommand and OleDBdataReader. Please guide me. [CODE] Dim cn As OleDbConnection Dim cmd …

Member Avatar for G_Waddell
0
2K
Member Avatar for rookanga

If you want to add list item of listbox1 of from1 to listbox1 of Form2 write the below codes in form2_load event.... [CODE] Dim a As Integer ListBox1.Items.Clear() For a = 0 To Form1.ListBox1.Items.Count - 1 Step 1 ListBox1.Items.Add(Form1.ListBox1.Items.Item(a).ToString) Next [/CODE] If you want to add textbox's text of from1 …

Member Avatar for imatepda2k
0
2K
Member Avatar for codeorder
Member Avatar for jbennet

Dear Sir/Madam, I have pasted some codes in my recent thread but some lines of codes are not showing after posting. When I have tried to edit that post, I have seen codes are there.

Member Avatar for Airshow
0
2K
Member Avatar for abu taher

Probably, you have done spelling mistake somewhere or something else. Without observing your codes, we can't help you. So, its better to post your save button's codes and table's field name.

Member Avatar for abu taher
0
176
Member Avatar for P.manidas

Dear Sir/Madam, I have written some CSS codes for designing web pages. The codes have produced well design in FireFox browser, but not in InternetExplorer and GoogleChrome as I have tested. It may not be worked in other browser also. But my question is that, how can I produced well …

Member Avatar for P.manidas
0
412
Member Avatar for dilse4sk

Dear Dilse4SK, As you mentioned that you have product information table where product ID, product name, unit price of that product etc. are there. And I am thinking that some records are already there. 1. First of all, put a Combobox or listbox (for product name) and two label or …

Member Avatar for P.manidas
0
943
Member Avatar for P.manidas

I am trying to run an asp page with an external JavaScript file but it is showing error like this.... Error Type: Active Server Pages, ASP 0124 (0x80004005) The required Language attribute of the Script tag is missing. /ew-ii-as-8/testserverwithEJSF.asp, line 3 My both files are... TestServerWithEJSF.asp [CODE] <html> <head> <script …

Member Avatar for P.manidas
0
575
Member Avatar for P.manidas

Dear Sir/Madam, I have two form in my application form1 and form2. Here, i want to show the form2 from form1 by using a button. And i want to reverse back to my form1 from form2 using same technique. But i want to close form1 (Not visible=false or hide) after …

Member Avatar for P.manidas
0
848
Member Avatar for thepanther

Dear thepanther, I have seen your codes, there is nothing wrong. Just place your score variable initialization before showresult function. And change the background colour to yellow.

Member Avatar for thepanther
0
155
Member Avatar for P.manidas

Dear Sir/Madam, I have created some ASP pages in my computer and stored those pages into the web site content directory (in my case C:\PanWeb) and IIS's Virtual Directory alias is "abcweb" created with the IIS V5.1 However, i can browse those pages in my computer by putting the 127.0.0.1/abcweb/ …

Member Avatar for P.manidas
0
357
Member Avatar for whin_lopez

Whin Lopez, As the code of Vanzhyme worked for you, mark this thread as solved, found at the bottom of this page.

Member Avatar for longstrd
0
3K
Member Avatar for P.manidas

Dear Sir/Madam, My computer is restarting sometimes automatically, when i double clicking on media file or run a program etc (But not every time). Earlier, i thought, it was because of some strong virus. So, i formatted the c drive and try to installed OS(XP Prof SP-II) on my PC. …

Member Avatar for BBAD
0
159
Member Avatar for P.manidas

Dear Sir/Madam, Recently, i got a problem on loading OS XP professional SP-II. I have installed the OS bringing my Hard Disk into another computer where with my Hard Disk's OS is running smoothly. But when i installing the same Hard Disk into my computer it is not loading the …

Member Avatar for vanzhyme
0
239
Member Avatar for Arbus
Member Avatar for dreadfulalpha76

What you have done so far? Let us see your codes. Where you have got difficulties?

Member Avatar for P.manidas
0
80
Member Avatar for zebnoon

Try this 4 lines of code instead of line nos. of your codes 7 to 11 [CODE] txtINameS.Text = Myrs("ItemNameSize").Value If Myrs.RecordCount = 0 then MsgBox "No Record Foun.Try again" Endif [/CODE]

Member Avatar for P.manidas
0
133
Member Avatar for abhay1234

See this link [URL="http://www.codeproject.com/KB/vb/InsertUpdateDeleteSearch.aspx"]http://www.codeproject.com/KB/vb/InsertUpdateDeleteSearch.aspx[/URL] and [URL="http://www.startvbdotnet.com/ado/msaccess.aspx"]http://www.startvbdotnet.com/ado/msaccess.aspx[/URL]

Member Avatar for P.manidas
0
234
Member Avatar for P.manidas

Dear Sir/Madam, I have a small programe created in VB 6.0 and database MS Access. Where user can insert their only name & address and can retrieve the existing records. Just for test, I have kept this programe (.exe file and database file) in the share document of a computer …

Member Avatar for P.manidas
0
266
Member Avatar for P.manidas

Dear Sir/Madam, I have a small programe developed in VB 6.0 and database MS Access. Where user can insert their only name & address and can retrieve the existing records. Just for test, I have kept this programe (.exe file and database file) in the share document of a computer …

Member Avatar for debasisdas
0
538
Member Avatar for Christopher2407

See this example. And try with your codes. [CODE] ST = "select * from table1 where empno=" ST = ST + "'" + TxtEmpNo.Text + "'" cmd = New OleDbCommand(ST, cn) ' where empno=" + "'" + TxtEmpNo.Text + "'", cn) dr = cmd.ExecuteReader() dr.Read() If dr.HasRows Then TextBox1.Text = …

Member Avatar for P.manidas
0
2K
Member Avatar for lielee

Lielee, What i understand from your two post in this thread that you have design your database as like this TiramisuCake--RedVelvetCake--VanillaFrenchCake----> these are column name (food name) ----------50----------------100-------------20----------------> price of food You need to enter the price of food under the food column name as shown above If it is …

Member Avatar for P.manidas
0
147