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!

About sa editing ng record.. in what particular event nageeror? kasi nagtry ako magedit ng image ng member wala namang lumabas na error.
 
di po gumana sir yun parin po ang error :weep:

boss ok nman ung code mo ah.. i DL your code and its run fine for me..

look the scrnshot s attachment. no error. i'l try to update member id no. 5, several times. but its not generate any error.
 

Attachments

  • untitled.bmp
    1.7 MB · Views: 7
About sa editing ng record.. in what particular event nageeror? kasi nagtry ako magedit ng image ng member wala namang lumabas na error.

s tingin q boss wla xa prob s editing ng member..

nag lagay aq ng brkpoint s code nya at my nkita aq error. s member_load event..

dun lumalabas ung msgbox n naglalabas ng error.

s attachment ung error.
 

Attachments

  • untitled.bmp
    1.7 MB · Views: 9
boss ok nman ung code mo ah.. i DL your code and its run fine for me..

look the scrnshot s attachment. no error. i'l try to update member id no. 5, several times. but its not generate any error.

mali pa post ko.. try mo sir close yung Members form tapos open mo ulit.
 
Last edited:
dapat po ganito output nya

2rnx0ki.jpg


1pzbqc.jpg

2nrnj4p.jpg

25txe1t.jpg


pero ang nangyayari

t7bz8o.jpg


eto po yun

[DLINK]http://qfs.mobi/f417760[/DLINK]


xa makakagawa po magbabayad po ako ty po :((
 
@WRECKRYO paupload nung project mo na may error.. Fix natin. :)

Note: Yung buong project
 
Last edited:
ang ganda.. makakaya ko ba ang ganito ? hindi po ako IT eh pero i want to learn.. mabuhay ka TS! keep up the goodwork! hanggad ko lng mka gawa ng html code para sa captive portal ko .. hahaists para naman mka hatak ng costumer itong munting negosyo ko.. sana me mag bibigay ng magandang html code na login portal with 5 tabs.. hehehehe.. padaan lng mga masters dito!
 
ang ganda.. makakaya ko ba ang ganito ? hindi po ako IT eh pero i want to learn.. mabuhay ka TS! keep up the goodwork! hanggad ko lng mka gawa ng html code para sa captive portal ko .. hahaists para naman mka hatak ng costumer itong munting negosyo ko.. sana me mag bibigay ng magandang html code na login portal with 5 tabs.. hehehehe.. padaan lng mga masters dito!

Code:
<form method="post" action="[COLOR="DarkRed"]Landing page here[/COLOR]/"><input type="hidden" value="1" name="cookie_on" /><span style="white-space:nowrap">Username: <input type="text" name="uname" maxlength="250" size="20" /></span> <span style="white-space:nowrap">Password: <input type="password" name="pw" size="20" /></span> <button type="submit">Log In</button></form>
 
Hayaan mong tulungan kita ng konte.. sa error mo na "Provided column already belongs to the DataGridView control. "

Gawin mong ganto yung code sa main mo:
Code:
Private Sub MemberFormToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MemberFormToolStripMenuItem.Click
        Members.Show()
    End Sub

kasi sir pag ngcclose naman po yung Edit na form.. nagmiminimize yung Main na form.. need pa sir i alt+tab para bumalik ulit.. ano po bang gagawin para di sya magminimize?

tyaka sir ito yung dahilan kung bakit sya ngmiminimize:
Private Sub MemberApp_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
Me.Dispose()
End Sub

Pag tinanggal naman to sir sa edit nanaman po ang probleman nya.

About sa editing ng record.. in what particular event nageeror? kasi nagtry ako magedit ng image ng member wala namang lumabas na error.

wala na po syang problema.. yung pagmiminimize nalang ng Main form.. maliban nalang sir kung alisin yung dispose()
 
Last edited:
patulong po

my string ako

str = "hello", "hi", "musta",


ang gusto ko po kunin ung index ng second comma. paano po gawin un?
 
bakit po kaya nag-eerror to? bigay lang po ng prof namin yung codes kasi po hindi computer-related yung course ko.. thanks po! :help:
 
Last edited:


Public cn As New ADODB.Connection
Public rs As New ADODB.Recordset


Sub main()
If datacon = True Then
MsgBox "succesful To Connection Access", vbInformation, "form1 is open"
Form1.Show

Else
MsgBox " Access connection error", vbCritical, "error connection"

End If


End Sub


Public Function datacon() As Boolean
Dim constring As String
On Error GoTo error_con

constring = App.Path & "\db1.mdb"
cn.ConnectionString = " Provider=Microsoft.Jet.OLEDB.4.0;Data Source= " & constring & ";Persist Security Info=False"
cn.CursorLocation = adUseClient
cn.Open

If cn.State = 1 Then
datacon = True
Else
datacon = False
End If
Exit Function
error_con:
datacon = False

End Function


yung nkapula po ang error
 


Public cn As New ADODB.Connection
Public rs As New ADODB.Recordset


Sub main()
If datacon = True Then
MsgBox "succesful To Connection Access", vbInformation, "form1 is open"
Form1.Show

Else
MsgBox " Access connection error", vbCritical, "error connection"

End If


End Sub


Public Function datacon() As Boolean
Dim constring As String
On Error GoTo error_con

constring = App.Path & "\db1.mdb"
cn.ConnectionString = " Provider=Microsoft.Jet.OLEDB.4.0;Data Source= " & constring & ";Persist Security Info=False"
cn.CursorLocation = adUseClient
cn.Open

If cn.State = 1 Then
datacon = True
Else
datacon = False
End If
Exit Function
error_con:
datacon = False

End Function


yung nkapula po ang error

vb6 yan pre
add mo
project>reference>microsoft activex data objects 2.8 kung xp 6.0 kung 7 then click ok
 
Back
Top Bottom