Posts
 
Reputation
Joined
Last Seen
Ranked #592
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

56 Posted Topics

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 samaru
Member Avatar for yossi321
Member Avatar for yossi321
0
107
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
17K
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
178
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
419
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
971
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
592
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
859
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
157
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
360
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
164
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
247
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
83
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
140
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
331
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
268
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
548
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
151
Member Avatar for tstory28

Try this one [CODE] Dim Complete As Boolean = False Dim Com As Boolean= False Dim PlaceNum As String Dim i As Integer Dim j As Integer Dim Num1 As Integer=1 Dim Num2 As Integer=1 Do While Complete = False If listbox1.Items.Count > 1 Then For j = 0 To …

Member Avatar for tstory28
0
1K
Member Avatar for dnk

By this below codes you can check how many words are there on single line or multi line text box even if user enter space in between and before or after words. [CODE] Private Sub Command1_Click() Dim Counts As Integer Dim dupText As String dupText = Replace(Trim(Text1.Text), vbNewLine, " ") …

Member Avatar for dnk
0
3K
Member Avatar for twigan1015

Dear Twigan1015, I am sorry but confused what you are asking here. What i understand is... You have four column/Field UPC, Quantity, Price and Total. You want to add all these four column's data into a listbox as listitem. And after that you will save it into a text file. …

Member Avatar for Unhnd_Exception
0
189
Member Avatar for P.manidas

Dear Sir/Madam, I am a B.A. graduate from Guwahati University of Assam, India and having one year Diploma course in Computer Application. I have assist in developing a Library Management System which is running smoothly in various colleges in Assam, India. And have developed some non-commercial software for personal excellence …

Member Avatar for P.manidas
0
204
Member Avatar for rookanga

See my reply to this thread. It may help you. Just follow the link below... [URL="http://www.daniweb.com/software-development/vbnet/threads/360042/1538176#post1538176"]http://www.daniweb.com/software-development/vbnet/threads/360042/1538176#post1538176[/URL]

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

You need to clear the data from both the combobox before loading and updating data of the combobox like this.. [CODE] old_product.Items.clear() old_model.Items.clear() [/CODE]

Member Avatar for P.manidas
0
103
Member Avatar for igho

Dear Igho, I have tested and it works fine. If you need counter MR/IR/0001 to MR/IR/9999 Try this codes as i modify two lines .... [CODE] dtReader = cmd.ExecuteReader If dtReader.Read Then strTemp = Mid(dtReader.Item("IDPERIKSA"), 7, 4) Else 'TxtDETAILTRANS.Text = "MR/IR/001" TxtDETAILTRANS.Text = "MR/IR/0001" 'change here Exit Sub End If …

Member Avatar for igho
0
194
Member Avatar for androidz

Dear Androidz, I had also started a thread as similar as to your thread. I have got the result. Probably you will also get the result from that. The thread is : [URL="http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/358556"]Addition of number from dynamically created textboxes after inputted by user[/URL]

Member Avatar for androidz
0
3K
Member Avatar for cindy s

Place the move next line(14 nos. line on your codes) once again for going to the next record after matching your query. See the modification codes [CODE] Do While (Not foundFlag) And (Not datBooks.Recordset.EOF) If UCase(datBooks.Recordset.Fields("Author").Value) = strSearchFor Then foundFlag = True lstBooks.AddItem datBooks.Recordset.Fields("Title").Value 'Here also place move next for …

Member Avatar for dspnhn
0
191
Member Avatar for P.manidas

Dear Sir/Madam, I have created a sample program that dynamically created up to 7 numbers of Labels and Text Boxes. Here I want to add those numbers inputted by user on dynamically created text boxes. I have tried a lot but all are in vain. Please guide me to solve …

Member Avatar for P.manidas
0
404
Member Avatar for swathys

This is an example with listbox for getting your solution. Hope, it will solve your problem. [CODE] Dim A As Integer = 0 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click A = A + 1 If Trim(TextBox1.Text) = Trim(Now) Then ListBox1.Items.Add(Now & " " & …

Member Avatar for swathys
0
371
Member Avatar for P.manidas

Dear Sir/Madam, I want to know two things here.. 1. Can we create object variable on Run time? 2. Can we store one object variable's data (Object) into another object variable? Please guide me sir/madam. Because, i have no idea in this regard.

Member Avatar for P.manidas
0
224
Member Avatar for dariomolnar
Member Avatar for satti

Write down the below code in the text field's (txtexpense3) lostfocus or keydown event. In your code txtexpense3 is written as txtexpemse3 [CODE] Text2.Text = Val(txtCommision.Text) + Val(txtRent.Text) + Val(txtLabour.Text) + Val(txtReturnExpense.Text) + Val(txtExpense2.Text) + Val(txtStoreExpense.Text) + Val(txtPhoneExpense.Text) + Val(txtExpense3.Text) Text1.Text = Val(txtNetPrice) - Val(Text2.Text) [/CODE]

Member Avatar for AndreRet
0
194
Member Avatar for P.manidas

Dear Sir/Madam, I have used Pop Up menu to show the list_Item of a list box on Up and Down Arrow KeyPressed event. But here i can't see the list item continuously by pressing up or down keys, either i have to click/enter on that pop up menu or in …

Member Avatar for AndreRet
0
817
Member Avatar for ben25x

Try this one.... Creating a button [CODE] Private Sub Form_Load() Dim Com As CommandButton Set Com = Me.Controls.Add("vb.commandbutton", "BtnName") With Com .Left = 1000 .Top = 3000 .Width = 5000 .Height = 1000 .Visible = True .Caption = "My Button" End With End Sub [/CODE] Moving a button..... [CODE] Dim …

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

Dear Sir/Madam I am getting the list item of a listbox as ToolTipTest on mouse move event. How can I get the list item of a listbox as ToolTipTest by pressing Up or Down Arrow Key on KeyBoard. Please guide me. How i have got the list item as ToolTipText …

Member Avatar for AndreRet
0
770
Member Avatar for P.manidas

dear Sir/Madam, I am unable open the regedit and showing the message that "Registry editing has been disable by your Administrator" though i am logging in as an Administrator. I have tried lots of technique but all are in vain. I have tried these .... 1.[URL="http://www.techtipsgeek.com/re-enable-registry-editor-disabled-virus/4392/"]http://www.techtipsgeek.com/re-enable-registry-editor-disabled-virus/4392/[/URL] 2. Registryfix.exe 3. Restore …

Member Avatar for crunchie
0
239
Member Avatar for P.manidas

Dear Sir/Madam How to check execution time of a procedure with the help of Timer control? How i have tried, i am attaching herewith my test program. Please guide me.

Member Avatar for AndreRet
0
320
Member Avatar for P.manidas

Dear Sir/Madam, I have two types of procedure for one/same result. No. 1 procedure is very long without loop and no. 2 procedure is sort with many loops. So I want to check those procedure, which one is taking less time than another. Please guide me.

Member Avatar for AndreRet
0
339

The End.