Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

Mga malulupit na programmer jan pasok!

mikim

Novice
Advanced Member
Messages
23
Reaction score
0
Points
26
paano po kaya makakapag compute ng isang column ng listview sa vb6.0,,,,,,,, dun ko po sana apalabasin yung total sa may textbox,,,,na may label sa gilid na answer,,,,hahahhahahaha,,,sino kaya malupit jan.dami ko na napagtanungan pero wala sila maisagot,,,,,View attachment 296253
 

Attachments

  • pop.png
    pop.png
    82.3 KB · Views: 66
Last edited:
paano po kaya makakapag compute ng isang column ng listview sa vb6.0,,,,,,,, dun ko po sana apalabasin yung total sa may textbox,,,,na may label sa gilid na answer,,,,hahahhahahaha,,,sino kaya malupit jan.dami ko na napagtanungan pero wala sila maisagot,,,,,View attachment 1170081

iread mo muna siguro tas idim mo tska mo icompute.
 
wag kang tannga mag quit kana mag google ka

Dim i
Dim Total As Double

For i = 0 To DataGrid1.ApproxCount - 1
Total =Total + DataGrid1.Columns(2).CellValue(DataGrid1.GetBookmark(i))
Next

txtTotal.Text =Total
 
Last edited:
mas ok sana kung may existing code ka tapos i hihingi ka ng advice para ma correct namen, hindi yung kami pa yung mag ggoogle para sayo!
 
dim total as double
for i=0 to listview1.items.count-1
total+=double.parse(listview1.items(1).subitems(i).text)
next i

labeltotal.text=total.tostring()
 
dim total as double
for i=0 to listview1.items.count-1
total+=double.parse(listview1.items(1).subitems(i).text)
next i

labeltotal.text=total.tostring()

madami pong salamat sa help,,,,,,,mikim po ito d ko maopen account ko,,,,kay gumawa me ng bago,,,,gumagana ba talaga ang for loop sa vb 6.0 kasi nagtry na ako ng for loop eeeee
 
Back
Top Bottom