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!

VB.NET Programming Corner!

mga sir patulong nman po .. ganito po kasi un nagadd po ako sa datagrid hindi po agad lumalabas ung inadd ko dun sa datagrid ? panu po un tnx po :)
 
mga sir patulong nman po .. ganito po kasi un nagadd po ako sa datagrid hindi po agad lumalabas ung inadd ko dun sa datagrid ? panu po un tnx po :)

tawagin mo lng ung method mo kung paano ka mag populate ng datagrid..
 
mga sir tanung lang po. ano po ba ang mas magandang gamitin sa pagdisplay ng data galing sa database? Datagrid or Listview? Para sa akin po kxe parang mas magaan at madaling imanipulate ang listview. Sa tingin po ninyo?
 
boss pa help nman po sa problema ko regarding installation sa vb.net 2008 dko kasi ma install kasi ng error ung installer po na install ko nman ung adotnet 3.5 pero error parin po sir yan po sa baba ang error ng visual basic po plsss i need help.. tnx bosing for making this thread and hope this thread is the way to solve my problem regarding installation...
 

Attachments

  • error.jpg
    error.jpg
    341.7 KB · Views: 9
boss pa help nman po sa problema ko regarding installation sa vb.net 2008 dko kasi ma install kasi ng error ung installer po na install ko nman ung adotnet 3.5 pero error parin po sir yan po sa baba ang error ng visual basic po plsss i need help.. tnx bosing for making this thread and hope this thread is the way to solve my problem regarding installation...

Based on the snapshot, VB was installed pero yung mga optional software
like SQL Server 2005 and silverlight, hindi daw na-install...
Anong Service Pack ng XP mo po? Check mo muna ang system
requirements ng Visual Basic 2008 Express Edition kung pwede sa O/S mo... :)
 
mga boss pano po ba para hindi na xa pumasok sa condition na ito kapag date.today..ngayon na date
for example
10/09/2012 <= 10/10/2012
dapat hinfi na sya pumasok sa condition dahil na set ko na sya para tommorow....,kasi pumasok parin xa kahit date.tomorow pa ang sa condition ko
Code:
if datedue <= date.today.adddays(1) then
msgbox("you have fines ")
end if
 
Last edited:
boss, os na gamit k po ay xp sp3 saka may ngsabi sa akin and basa ng mga furoms kylangan nya netframe 3.5 at un ang na install ko pero ayaw parin boss..
 
boss ang gamit ko po ay windows xp saka require daw nya ung netframe 3.5 kaya un din ang download ko at na install ko nman.. pero gnyan parin ang kinalalabasan eh
 
may online po b dyan? papatulong ako sa project ko. vb2008 database po with report. di ko po kasi maget eh.

table:

studid first name
1 jose
2 pedro
3 kulas

paano po yung ganito:

may textbox po ako tapos kapag nilagay ko studid, automatic mashoshow sa isang textbox yung firstname.
 
mga sir tanung lang po. ano po ba ang mas magandang gamitin sa pagdisplay ng data galing sa database? Datagrid or Listview? Para sa akin po kxe parang mas magaan at madaling imanipulate ang listview. Sa tingin po ninyo?

Tama Sir.. and mas mukang malinis ung listview..
and sa tingin ko mas madali po sya imanipulate kesa sa datagrid.
dati din kasi datagrid ginagamit ko pero nung natututo ako sa listview ayun mas ok pala xa.
 
mga sir pno ba mag delete ng array value na nasa listview??
 
mga tol patulong naman .. :praise::praise:

pahingi po example ng pagupdate ng datagrindview..

ito po yung probs ko.. may button po ako (update) every time po na mag modify po ako sa datagrindview ng item. pag press po ng update mag update po sya.. pls anyone can help me this..

newbie lang po sa vb. net
 
mga tol patulong naman .. :praise::praise:

pahingi po example ng pagupdate ng datagrindview..

ito po yung probs ko.. may button po ako (update) every time po na mag modify po ako sa datagrindview ng item. pag press po ng update mag update po sya.. pls anyone can help me this..

newbie lang po sa vb. net

ulitin ko ulit...
kung paano mo ipopulate ung datagridview mo tawagin mo lng...
better kung gawin mong function/method para icall mo lng...
 
boss ang gamit ko po ay windows xp saka require daw nya ung netframe 3.5 kaya un din ang download ko at na install ko nman.. pero gnyan parin ang kinalalabasan eh

How about your Hard Disk available capacity?
And the RAM?
Check your hardware :)
 
mga sir pno ba mag delete ng array value na nasa listview??

Kabalen, kung sa listview.. pwede eto...
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim RowNum As ListViewItem
For Each RowNum In ListView2.SelectedItems
ListView2.Items.Remove(RowNum)
Next

End sub
But if you want to remove values from arrays, much better to use List<T> and use the method List<T>.RemoveAt

Dacal Salamat...
 
tnx..
this thread is very useful... :)

asking some questions later :">
 
may online po b dyan? papatulong ako sa project ko. vb2008 database po with report. di ko po kasi maget eh.

table:

studid first name
1 jose
2 pedro
3 kulas

paano po yung ganito:

may textbox po ako tapos kapag nilagay ko studid, automatic mashoshow sa isang textbox yung firstname.

May nagawa na po ba ikaw? I-post mo lang dito para ma-check natin...
 
Kabalen, kung sa listview.. pwede eto...

But if you want to remove values from arrays, much better to use List<T> and use the method List<T>.RemoveAt

Dacal Salamat...

dacal ah salamat po keng response, pwede kbang magsample na ginagamit ung code na to
But if you want to remove values from arrays, much better to use List<T> and use the method List<T>.RemoveAt
pasensya na diko sya masyadong naiintindihan, sory,...



eto na pla ung ginwa ko na nagdedelte ng items, ang problema dito, kunyari may sampong items sa listview kung ung huli ung iddelte mo ok lang sya kaso pag sa una dun na may error
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Dim chosen, temp As String
Dim ctr3 As Integer
chosen = ""
chosen = Lview1.SelectedItems(0).Text
If chosen <> "" Then
For ctr3 = 0 To ctr
temp = ArrayCode(ctr3)
If ArrayCode(ctr3) = chosen Then
ArrayCode(ctr3 + 1) = temp
Arrayproduct(ctr3) = Arrayproduct(ctr3 + 1)
ArrayUnit(ctr3) = ArrayUnit(ctr3 + 1)
ArrayQuantity(ctr3) = ArrayQuantity(ctr3 + 1)
arrayTotalPrice(ctr3) = arrayTotalPrice(ctr3 + 1)
Else
ArrayCode(ctr) = temp
End If
Next
ctr -= 1
End If
Lview1.Items.Clear()
View()
End Sub
 
Last edited:
Back
Top Bottom