11 Posted Topics
| |
Re: Something like this? I presume you are connecting a DB of some sort. [CODE]Dim ds As New DataSet 'oData is just an interface which contains my connection strings ds = oData.GetSQL("SELECT * FROM [TableName] WHERE " & cbFilter.Text & " LIKE '%" & txtSearch.Text & "%'" For Each dr As … | |
Re: nevermind ;) | |
Re: Are you populating the combo boxes with code if so, check your code? if not, just remove the combobox and add a new one & fix the properties. | |
Hey guys I've seem to be stuck with a particular problem, which I just cant solve. Here is some background info. We are small company with 8 users. We have a shared network drive on the development server (Windows Server 2008 R2) we use to sync our development code/other files. … | |
Re: Wrong forums.. | |
Re: Hi Declare a new DataSet, then execute a standard query to populate the DataSet. [CODE] Dim sqlString As String = ("SELECT tblEmployee.fName, tblEmployee.lName, tblEmployee.mName FROM tblEmployee WHERE tblEmployee.fName LIKE '%" & txtSearch.Text & "%'")[/CODE] txtSearch.Text is an textbox on the form. Go into a "for each" loop and place it … | |
Re: Why don't you raise the event on TextChanged instead? [CODE]Private Sub txtSpouseWorkPhone_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtSpouseWorkPhone.TextChanged[/CODE] | |
Re: No, He has a point, you put zero effort into solving your problem, and expect people to do all the code for you. This is a place to seek help, not a place to get code from scratch. Sure, I can do this for you, give you fully functional code … | |
Hi guys, I'm finding myself in a little trouble. I've tried to google this problem, but without much success. Hopefully its something simple I'm missing and someone will be able to help me. I'm writing a little program that will synchronize two access database schema's. It works, to a point. … | |
They say asking a proper question is also a skill, one I haven't mastered yet. This is the official excuse I'll use for my lack of knowledge =p Here is my problem. On my personal custom build computer I recently bought, my keyboard is slow to respond if I keep … |
The End.