RkD Posted October 4, 2011 Share Posted October 4, 2011 I like VB. I hate VB.NET Quote Link to comment
HunkDavao Posted October 25, 2011 Share Posted October 25, 2011 I like VB. I hate VB.NET Im a solid MSACCESS/VB programmer before. Didnt even know codes puro macros gamit ko. I saw the VB codes generated by those Macros and I knew VB was good and easy to use. Then I ventured into .NET due to job requirements. .NET in general has more tools and control over the data, where you have to create those datasets dynamically in VB, you can use datasets from ADO objects in .NET. I guess brod you just need to see some sample codes on how VB code can be converted to .NET, im sure youll love .NET na. isipin mo 200 lines ng VB code to run database code, kaya nang .NET sa 10 lines. Quote Link to comment
kisserfoxygirl Posted December 16, 2011 Share Posted December 16, 2011 gud morning... ask ko lng po sana kung saan po ba pwede makpgdownload ng MS access din po.... need ko po asap.... for my project... plss... Quote Link to comment
kisserfoxygirl Posted December 18, 2011 Share Posted December 18, 2011 ^^ you may browse the software thread in free stuff for members for links to MS Office. MS Access is part of the Office suite. yah... hndi po kasi complete ung Ms office ko po... Quote Link to comment
mrbrainfreeze Posted December 30, 2011 Share Posted December 30, 2011 Mga Masters, Pwede nyo ba ako tulungan i-convert itong code from VB6 to VB.NET (2010 Express)? I developed kasi a program for private schools at gusto ko i-upgrade ang code to .Net pero I am having problem sa coding ng ADO to ADO.net Here is the code I use: Public Conn As New ADODB.ConnectionPublic Rs As ADODB.RecordsetPublic Fld As ADODB.FieldPublic ConnStringDim Arr_Enrollees()Dim Ctr Private Sub Form_Load() ConnString = "DRIVER={MySQL ODBC 3.51 Driver};SERVER=localhost;DATABASE=littleangel_db;UID=pss;PWD=pss;OPTION=3;" Set Conn = New ADODB.Connection Conn.ConnectionString = ConnString Conn.Open Set Rs = New ADODB.Recordset Rs.CursorLocation = adUseServer with Rs Ctr=0 .open "select count(*) from file_enrollees", Conn redim Arr_Enrollees(.fields("count(*)"), 2) .close .open "select * from file_enrollees", Conn if not .eof then .movefirst Ctr=0 do while not .eof Arr_Enrollees(Ctr, 0) = .fields("enrollees_fname") Arr_Enrollees(Ctr, 1) = .fields("enrollees_lname") .movenext Ctr= Ctr + 1 loop end if .close .open "select * from file_enrollees", Conn, adOpenStatic, adLockOptimistic .addnew !enrollees_fname = "Juan" !enrollees_lname = "Calintong" .update .close end withEnd Sub Sana merong makatulong maka-explain ng simple kung paano ma-convert itong example to VB.Net / ADO.Net Thanks in advance BTW. MySQL pala gamit ko May pangconvert ang vb.net. No need to revised the codes. Pm me if you need help. Quote Link to comment
Sledgie Posted January 4, 2012 Share Posted January 4, 2012 Dahil sa gumagamit ka ng ibang database (MySQL) kailangan mong idownload yung driver nya (Go to MySQL website for the free downloads)Then major revision yan almost everything sa code mo. imports System.Data.MySQLClient public class SomeMethod Dim conn as new MySQLConnection("connection string here") Dim dt as new DataTable Dim da as MySQLDataAdapter conn.open da = new sqlDataAdapter("SQL Synatx here") da.fill(dt) dim ctr as integer For Each dr As DataRow in dt.Rows Arr_Enrollees(ctr,0) = dr.item("Field_Name").toString() Arr_Enrollees(ctr,1) = dr.item("Field_Name").toString() Next End Class pag nagaadd ka naman kailangan mong gumamit ng sqlCommand tapos SQL DML statements INSERT INTO TableYun lang Quote Link to comment
fiendish Posted January 8, 2012 Share Posted January 8, 2012 mga sir.. im a com sci graduate unfortunately was not able to venture into the programming world, now i wanna go back to being a programmer, ano maadvise nyong pagaralan or ireview kong programming language na in demand ngyon.. im thinking of at least 3-5 languages.. ano po massuggest nyo and if may mapprovide po kayong link kung san pwde makakuha ng e-book or tutorial videos.. pati na rin po pala kung san pwde makakuha ng installer.. maraming maraming salamat po, sorry if medyo madami akong hinihingi,...kahit alin lang po jan ang masagot nyo.. i'll appreciate it.. thanks.. Quote Link to comment
iamnoangel Posted January 9, 2012 Share Posted January 9, 2012 mga sir.. im a com sci graduate unfortunately was not able to venture into the programming world, now i wanna go back to being a programmer, ano maadvise nyong pagaralan or ireview kong programming language na in demand ngyon.. im thinking of at least 3-5 languages.. ano po massuggest nyo and if may mapprovide po kayong link kung san pwde makakuha ng e-book or tutorial videos.. pati na rin po pala kung san pwde makakuha ng installer.. maraming maraming salamat po, sorry if medyo madami akong hinihingi,...kahit alin lang po jan ang masagot nyo.. i'll appreciate it.. thanks.. I think it is best na balikan mo ung language na gamay ka then saka ka mag aral ng new language. Sa mga languages naman, "in the philippines" eto ang mga in demand AFAIK. 1.) Mainframe (Cobol, ASPXXXX, RPG)2.) Java3.) Oracle4.) SAP5.) VB.NET Ung "Game Programming" available narin satin. Ang alam ko sa subic ang office nila, C# and C++ ang common. Meron din demand sa iOS (IPAD, Iphone) platform. For softwares and tutorials search ka na lng sa torrent. Good luck sa pag balik mo sa gusto mong career. Di tulad ko na COE graduate na napunta sa programming. Quote Link to comment
fiendish Posted January 10, 2012 Share Posted January 10, 2012 I think it is best na balikan mo ung language na gamay ka then saka ka mag aral ng new language. Sa mga languages naman, "in the philippines" eto ang mga in demand AFAIK. 1.) Mainframe (Cobol, ASPXXXX, RPG)2.) Java3.) Oracle4.) SAP5.) VB.NET Ung "Game Programming" available narin satin. Ang alam ko sa subic ang office nila, C# and C++ ang common. Meron din demand sa iOS (IPAD, Iphone) platform. For softwares and tutorials search ka na lng sa torrent. Good luck sa pag balik mo sa gusto mong career. Di tulad ko na COE graduate na napunta sa programming. Thanks ng madami.. nagapply kasi ako dati sa Accenture as Software Engineer after grad eh atat ako magkatrabaho agad, at hindi na nahintay ang Accenture, napunta tuloy ako sa CallCenter, although IT Field pa din nman ang hawak ko, medyo nagssawa nako.. so try ko bumalik.. hehehe.. As for the PL that im used to, gamay ko ang Visual Basic 6.. so i think ill start off with VB.net.. thanks again.. Quote Link to comment
iamnoangel Posted January 25, 2012 Share Posted January 25, 2012 Thanks ng madami.. nagapply kasi ako dati sa Accenture as Software Engineer after grad eh atat ako magkatrabaho agad, at hindi na nahintay ang Accenture, napunta tuloy ako sa CallCenter, although IT Field pa din nman ang hawak ko, medyo nagssawa nako.. so try ko bumalik.. hehehe.. As for the PL that im used to, gamay ko ang Visual Basic 6.. so i think ill start off with VB.net.. thanks again.. Sana hinintay mo na lng ung sa Accenture. Para sakin "SAYANG". Quote Link to comment
TheFlash Posted February 1, 2013 Share Posted February 1, 2013 Hi guys, I'm looking for a programmer who can create an off-line database for me. The idea is, I need a program (installable to any pc) to do quizes or exams for our sales team in the field. There will be databank of questions and then randomly, 20 questions will pop-up (by 1's) in a window. The sales person will now take the exam (multiple choice or essay) in a time pressured manner. Each question will be shown for two minutes only then will go to another question in the same window. All data like scores and where the sales person got the wrong answer will now be synched to an admin (back-end in the office). I can explain the full details of the requirement in person or via cellphone. Should anyone be interested, please call me at 0917-5073692. This is Jon. Thanks. Quote Link to comment
iamnoangel Posted April 10, 2013 Share Posted April 10, 2013 Hi guys, I'm looking for a programmer who can create an off-line database for me. The idea is, I need a program (installable to any pc) to do quizes or exams for our sales team in the field. There will be databank of questions and then randomly, 20 questions will pop-up (by 1's) in a window. The sales person will now take the exam (multiple choice or essay) in a time pressured manner. Each question will be shown for two minutes only then will go to another question in the same window. All data like scores and where the sales person got the wrong answer will now be synched to an admin (back-end in the office). I can explain the full details of the requirement in person or via cellphone. Should anyone be interested, please call me at 0917-5073692. This is Jon. Thanks. May I know your ETC for this? Saka ko na alamin details kung swak pa sa sched ko. Quote Link to comment
mykgo2000 Posted July 27, 2013 Share Posted July 27, 2013 Where can I find a thread here that is dedicated to app development? Quote Link to comment
addick Posted July 28, 2013 Share Posted July 28, 2013 Ask ko lang papano po gumawa ng currenc rate sa led monitor? Parang fx rate board na makikita sa sm pero sa monitor na. Thank you po Quote Link to comment
Jester0105 Posted July 28, 2013 Share Posted July 28, 2013 meron ba kayong PDF book na madali intindihin on how to code ng application para sa windows phone 8? Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.