Click here to Skip to main content
15,895,709 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
its been a month looking and can't find :confused: :((

does ant one know how to connect a windows mobile application with a sql server 2005 to access a database on the sql server2005 WITHOUT USING THE ACTIVE SYNC
over the wirless lan and the server and mobile will be at the same network not over the internet

thank u in advance
Posted

There's a step-by-step example (with sample sourcecode) here[^].

Good luck :)
 
Share this answer
 
gr8 it worked it realy worked thank u man

i have another question (sorry)

how to assign the sql server database filds to combo boxes not data grid

i want to display it in text boxes not data grid
 
Share this answer
 
sary_mohamed wrote:
i have another question (sorry)

how to assign the sql server database filds to combo boxes not data grid

i want to display it in text boxes not data grid
advance

Don't be sorry, I think it's a good place to ask questions. Something like this would add items to a combobox;
C#
comboBox1.BeginUpdate();
for (int i = 0; i < 200; i++)
{
    comboBox1.Items.Add(i.ToString());
}
comboBox1.EndUpdate();
You could hook that up with the datareader. I think that databinding could be an option too, but I'm not sure on that.
 
Share this answer
 
last question

is there any way to make like a search page

like all the fileds of a table on the form u input something on one or 2 text box[s] it searches in the table and retrives all the other filds that are empty in the text boxes

i am realy sorry but this is my graduation project and the due date is soon so i am a little in a hurry thats why i ask too much

thank u any way u gave me alot of help Eddy Vluggen u have been realy helpful
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900