Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
2 Endorsements
Ranked #621
Ranked #3K

15 Posted Topics

Member Avatar for UtaChan

You can use listview. You can put other controls inside a listview like textboxes and labels. Just assign a datasource to the listview and display database values in a label or any other control depending on your preference.

Member Avatar for bharat_4g
0
235
Member Avatar for atlachar

example: first, create a session and assign a value. Session("example") = txtExample.text and then if you want to retrieve it from another page, do something like this: lblExample2.Text = Session("example").ToString()

Member Avatar for aquamarine_kath
0
1K
Member Avatar for aquamarine_kath

I want to display values in a listview within another listview. I already displayed values in the parent listview(lvPackage) but I don't know to insert values in the child listview. I'm using mysql. My only problem is that I don't know how to display values lblPackAct in child listview(lvPackAct). Here's …

0
156
Member Avatar for aquamarine_kath

Hi Guys. I'm having an error "Error No. 2003. Can't connect to MySQL server on 'localhost' (10061)". I am using windows XP in my laptop. Before, I have no problem in using MySQL. I also tried to connect using MySQL Administrator, but I got the same error. Sometimes I can …

Member Avatar for sbhavin
0
2K
Member Avatar for aquamarine_kath

I am writing a program that manipulates text file using console application. What I want to do is to delete 1 specific line based on the ID entered by the user. For example: DR-01|Coke|25.80 DR-02|Sprite|25.80 DR-03|Sarsi|25.80 DR-04|Coke|25.80 When the user entered DR-02, the result would be like this: DR-01|Coke|25.80 DR-03|Sarsi|25.80 …

Member Avatar for aquamarine_kath
0
691
Member Avatar for lbgladson
Member Avatar for aquamarine_kath

Hi. I tried to install vb6 on my friend's laptop. It was installed but when I double click the control on a form to write a code, it has stopped working. It says, "VB6 has stopped working". It was installed but I cannot put a code in it. Here are …

Member Avatar for LesF
0
210
Member Avatar for PM312

Just set the alignment property of the textboxes in the property window 0 - Left Justify 1 - Right Justify 2 - Center or in code: [code] Text1.Alignment = 0 'left align Text1.Alignment = 1 'right align Text1.Alignment = 2 'center align [/code]

Member Avatar for WaltP
0
3K
Member Avatar for PinoyDev

To know if the user hits Ctrl + C or Ctrl + V, try this one: [code] Dim key as Boolean Private Sub Combo1_KeyDown(KeyCode As Integer, Shift As Integer) key = Shift And vbCtrlMask If key And (KeyCode = vbKeyA) Then 'your code here End If End Sub [/code] Same …

Member Avatar for PinoyDev
0
862
Member Avatar for Arbus

You can use FlashCrypt to secure your files. It is a free software. [URL="http://flashcrypt.en.softonic.com/download"]http://flashcrypt.en.softonic.com/download[/URL]

Member Avatar for aquamarine_kath
0
599
Member Avatar for androidz

this may help. [URL="http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/370793"]http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/370793[/URL]

Member Avatar for aquamarine_kath
0
88
Member Avatar for joaep2

Just like what BitBit said, try to create a button during design time and make it visible = false in the property window. When u need it, u can unhide it or make it visible like this: [code] Command1.visible = true [/code]

Member Avatar for aquamarine_kath
0
125
Member Avatar for aquamarine_kath

I have fields UserID, Status and etc. The status of the user will be either active or inactive. I want to count how many UserID of Active users only. I have a code here but it's not working..It says "Invalid or Unqualified reference". Can you please help me check this …

Member Avatar for aquamarine_kath
0
138
Member Avatar for aquamarine_kath

I got a runtime error 3705 "Operation is not allowed when the object is open". When I click debug, it highlights the connection object I made in the module. I have a form named frmUser. When I click mnu_User from the mdiForm, I got a runtime error 3705, but when …

Member Avatar for aquamarine_kath
0
1K
Member Avatar for aquamarine_kath

Hi, I got a runtime error 3709. It says "The connection cannot be used to perform this operation. It is either closed or invalid in this context." I can't find what's causing the error.. Here is my code: [CODE] Public Sub S_LOAD_flxUser() Dim strSql As String Dim rsLoad As New …

Member Avatar for AndreRet
0
796

The End.