Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~4K People Reached
About Me

I are Lacrecen

Interests
games and stuffs
Favorite Forums
Favorite Tags
Member Avatar for Lacrecen

im following a tutorial on youtube and i cant copy the same command on my project. the command on the video is: http://imgur.com/otl9Mva the command on my project is: http://imgur.com/oufvk5v thetableadapter.delete command is missing.. why? im new with vb2010 database.. so im simply following tutorial that requires less code.

Member Avatar for Lacrecen
0
97
Member Avatar for Lacrecen

hello!~ i have a search button on my form and i need to search all the information inside the "information" table. i have 10 fields. what i've code is: adoInfo.RecordSource = "select * from information where name+age+score+birthdate+gender+civilstatus+citizenship+contactnumber+address+email like '%" & txtSearch.Text & "%'" adoInfo.Refresh If adoInfo.Recordset.RecordCount = 0 Then MsgBox …

Member Avatar for slavica.k
0
202
Member Avatar for Lacrecen

hello guys and happy new year!~ let me be the first to ask a question this 2015.. huehue is it possible to start with the same recordset when going to the next form? i have a textbox for name in form1 when i go to form2 i want to display …

Member Avatar for Lacrecen
0
183
Member Avatar for Lacrecen

in trying to clear all the input boxes on my form.. i have a textbox and combobox.. and i have found the code for clearing all textboxes which is: For Each Control In Me.Controls If TypeName(Control) = "TextBox" Then Control.text = "" End If Next the only thing to do …

Member Avatar for Lacrecen
0
3K
Member Avatar for Lacrecen

hello guys~ i need your opinion on the following code: Private Sub Form_Load() cmbUser.AddItem "Faculty" cmbUser.AddItem "Applicant" End Sub Private Sub cmbUser_DropDown() cmbUser.Clear cmbUser.AddItem "Faculty" cmbUser.AddItem "Applicant" End Sub i always use the combo box dropdown event when adding list to my combo box then i see some code adding …

Member Avatar for Lacrecen
0
114
Member Avatar for Lacrecen

Good day!~ May i know the difference between creating database using Visual Data Manager and using MS Access. which is better?

Member Avatar for Lacrecen
0
242
Member Avatar for Lacrecen

can someone enlighten me what 's the difference between having a codeless database conenction and using manual code to connect to database. which is better? for me, i think it is easier to do database using connection using object properties like datasource, datamember. i find it difficult using manual coding …

Member Avatar for Lacrecen
0
81
Member Avatar for Lacrecen

Hello!~ i'm currently doing a database about examination system.. i already have a database for login,registration, and questionaires. my problem is on my question database.. i managed to connect the questions and choices in visual basic (or so i thought) questions are on multiple choices.. my question is : how …

Member Avatar for Lacrecen
0
155