User Profile
Collapse
-
How to filter a listview that matches only with a keyword?
this is my line of codes. but it only compares to the equal match on the textbox. is there any way where i can match even just a keyword and will select all items with the same keyword that i type on textbox.
[LEFT]
For i = 0 To ListView1.Items .Count - 1
If ListView1.Items (i).SubItems(1) .Text.ToLower = TextBox1.Text.T oLower Then
ListView1.Items (i).Selected = True
ListView1.Ensur eVisible(i)
End If... -
How can i access one database over a LAN with different vb applications?
hi. im using ms access 2003 and vb 2010, i already have 3 different vb apps, and i want to access a single database over the lan. but i dont know how. is this possible using a client-server type or is there much simpler way to access the database? -
hello. tnx for your reply. i tried it but still got an error:
Code:Syntax error (missing operator)in query expression ",0,'dex','bvn,",",0,",",",0,",'Monday'.
Leave a comment:
-
Why are number of query values and destination fields not the same?
here is my code. dont seem to know whats the problem. i have 12 data fields in access excluding the ID field.
Code:Dim strCon As String = "Provider=Microsoft.jet.oledb.4.0;data source=C:\Users\dexter\Documents\desktop\csci14\database\Museum-final.mdb" Dim dSet As New DataSet Dim M_I As String Dim Fname As String Dim Lname As String Dim Age As Integer
Last edited by Stewart Ross; Feb 6 '11, 10:47 AM. Reason: Please use the [code]...[/code] tags for your VB segments -
-
i really find it hard to understand.. im sorry. but i'll keep trying until i got it right.^^ tnxLeave a comment:
-
does the "Me.YourDataSou rceNameHERE" signifies the dataadapter??
im going to try this... btw ive been working on a code i found on other sources and tried it but cant seem to figure out whats wrong.
message box appears saying that "there is no row at position 1" but the password column in my table is row 1.
this is the code:
[LIST][*]Dim i, rwno As Integer[*] Dim colname As String[*]...Leave a comment:
-
does the "Me.YourDataSou rceNameHERE" signifies the dataadapter??
im going to try this... btw ive been working on a code i found on other sources and tried it but cant seem to figure out whats wrong.
this is the code:
Dim i, rwno As Integer
Dim colname As String
Dim value As Object
colname = "Password"
rwno = 0
value...Leave a comment:
-
im confuse, how can i compare the if statement in the code directly to password only.
" if me.validate () = ? then
Me.SettingsBind ingSource.EndEd it() Me.TableAdapter Manager.UpdateA ll(Me.Recruitin gDataSet)"
is my logic right?? sorry for not understanding well, im not really good in coding^^Leave a comment:
-
i do have a table that contains username and password. and there are 3 default username and password that can be use to login. if i were the Admin(one of the user) i can login using the default password for the username admin and at the same time to enforce security i can update or change may accounts password.
thanks for your reply. I'll try this.Leave a comment:
-
How to change password using access as database?
please can anyone help me?
im currently working in a project and i already made a code for the login, the only thing is that i dont know how to update the records(Usernam e/Password) in access using VB 2010. well i can update by manually changing the content of my table but i like to have it change using an interface in my vb named Manage account...
thank you in advance.
No activity results to display
Show More
Leave a comment: