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!

Recent content by fuzzy06

  1. F

    Share your GUI Designs

    ang ganda naman po ng login mo, hehe. cool.
  2. F

    Exclusively for Visual Basic 6.0 Programmers Only!

    Error tong query mo brad once na na icompile to sa palagay ko, nag aggregate ka hindi ka nag group by
  3. F

    VB.NET Programming Corner!

    bakit di mo nalang i copy file yung code file mo. for example yung .vb class mo i File.Copy mo yung contents nya papuntang .txt then open mo yung .txt sa notepad edi autosave na sya.
  4. F

    VB.NET Programming Corner!

    [CODE]CREATE TRIGGER bookremain AFTER INSERT ON LibraryTransaction FOR EACH ROW BEGIN UPDATE BookInfo,LibraryTransaction SET BookInfo.BookRemaining = BookInfo.BookRemaining - LibraryTransaction.NoofCopy WHERE BookInfo.BookNo = INSERTED.BookNo AND BookInfo.BookNo = INSERTED.BookNo; END/CODE]
  5. F

    VB.NET Programming Corner!

    Inexecute mo kasi yung data reader mo ng dalawang beses (2x) may "Cm.ExecuteReader" kana meron ka pang "Cm.ExecuteNonQuery". kaya sabi ng compiler sayo may naka open pa
  6. F

    VB.NET Programming Corner!

    hindi mo kasi inespecify kung anong table yung kukunin mo sa dataset. ang dataset kasi eh collections of datatable yan. try mo yung ganito DataGridView1.DataSource = ds.tables(0)
  7. F

    sql ssis need help

    ano problem mo?
  8. F

    VB.NET Programming Corner!

    try to explore the codes on those sample system by digitalPersona, that's what i did and i create my own technique which is to save the fingerprint template name in database
  9. F

    VB.NET Programming Corner!

    di ko magets kung anong office viewer ang tinutukoy mo?
  10. F

    Exclusively for Visual Basic 6.0 Programmers Only!

    Ang ginawa mo kasi ay pinaghiwalay mo pa yung If statements mo . kung gusto mo talaga ng ganyan, palitan mo yung una mong If sa ganito If Text1 = "" Then MsgBox "Invalid! Enter only numbers.", vbCritical, "Error!" Exit Sub Text1 = "" End If dinagdag ko yung Exit Sub dyan, ang ibig sabihin...
  11. F

    VB.NET Programming Corner!

    possible yung listview na nacacall mo is null or wala kaya mo nerereceive yang error na yan
  12. F

    Exclusively for Visual Basic 6.0 Programmers Only!

    kaya naman pala eh, yan since naka dim ka na as String, iconvert mo lahat ng textbox as integer ganito. note: yung unang una wag mong iconvert If Text1 = "" Then MsgBox "Invalid! Enter only numbers.", vbCritical, "Error!" Text1 = "" End If If Val(Text1) >= 101 Then MsgBox "Maximum grade has...
  13. F

    Exclusively for Visual Basic 6.0 Programmers Only!

    imposibleng maging zero ang default ng textbox dahil ito ay string type. baka naman sineset mo o cinoconvert mo yung value ng textbox bago mo itest kung anong grade nya
  14. F

    101 Visual Basic and C# Code Samples for Visual Studio .Net

    much better if you use the latest technology on your list which is ADO.net, btw, you can't compare ADO.net into OLEDB
  15. F

    Exclusively for Visual Basic 6.0 Programmers Only!

    unahin mo yung If text = "" Then MsgBox "Invalid! Enter only numbers.", vbCritical, "Error!" End if
Back
Top Bottom