69 Posted Topics

Member Avatar for crazyvonzipper

Did someone try [This](http://www.programmersheaven.com/mb/TheOne/198105/198105/how-to-make-a-query-between-multiple-tables-in-a-dataset/)

Member Avatar for Michael27
0
264
Member Avatar for ppstyle
Member Avatar for TyroneDavis

> Create it to be hard to use without proper documentation, online services, hotline, training courses etc Wouldn't that create very narrow customer base?

Member Avatar for Techjunkie1900
0
113
Member Avatar for ChrisHunter

From C# application without prior connection, it is impossible to do that. Besides connection string there is no way to connect to the database. Incomplete connection string won't execute(it needs to contain the name of the server/path, name of the database and security details)

Member Avatar for ChrisHunter
0
234
Member Avatar for praveendasika

[Member Rules](http://www.daniweb.com/community/rules) Do provide evidence of having done some work yourself if posting questions from school or work assignments

Member Avatar for bhagawatshinde
0
209
Member Avatar for UFO Disko

I don't know if this is required but i would recommend you to learn [OOP](http://www.amazon.com/Object-Oriented-Thought-Process-Developers-Library/dp/0672330164)

Member Avatar for Michael27
0
219
Member Avatar for HPayne111

C# is not vey difficult language, first get some basics in OOP(Object oriented programming) and rest will be easier. A good place to start is from the developer of the language it self http://msdn.microsoft.com/en-us/vstudio/hh341490.aspx

Member Avatar for Michael27
0
106
Member Avatar for Michael27

When you are attaching a file to thread don't use # for a file name it will give 404 not found page. [Example](http://www.daniweb.com/software-development/csharp/threads/425890/problem-connecting-c-app-to-a-.mdf-file-in-sql-management-studio)

Member Avatar for Dani
1
190
Member Avatar for king03
Member Avatar for codechrysalis
Member Avatar for daringone

What you are passing is is entire array not elements of those arrays [Click Here](null) And then when you do Count -1 you have removed last Array from the count

Member Avatar for Michael27
0
220
Member Avatar for memomk
Member Avatar for Ankit_Parmar
Member Avatar for M.Waqas Aslam

> "object refrence is not set to an instance of an object." Cause 1: Not declaring variables! Yes, I know it sounds obvious, but MAKE SURE that you've explicity declared the variable, and don't forget to use the appropriate scope! Cause 2: Bad scoping public Form1() { private string strHello; …

Member Avatar for arunkumars
0
183
Member Avatar for Tobiczyk

/// <summary> /// Used to set up the data table when the user types a query. /// </summary> void BuildDataGrid() { dataGridView1.DataSource = GetSearchResults(queryStr); } /// <summary> /// Connect to the database and then use an adapter to /// fill a DataTable. /// </summary> DataTable GetSearchResults(string queryStr) { // // …

Member Avatar for Mitja Bonca
0
251
Member Avatar for Michael27

Can someone show me algorithm so i can sort array like this? [Picture](http://i.imgur.com/HhQ4I.jpg)

Member Avatar for Mitja Bonca
0
354
Member Avatar for Michael27

Is there a topic about this, if there isn't i would like to start one. Still haven't found one.

Member Avatar for Michael27
0
153
Member Avatar for Michael27

I have hard-coded this array of ints [CODE]int[] numbersToSort = {100, 23, -1, 3, 99, 0};[/CODE] I want to use Console.Readline() to take input from the user, but it only takes string input. I can't use Convert.ToInt32() because it doesn't take array for parameter. How can i convert array of …

Member Avatar for Mitja Bonca
0
135
Member Avatar for Michael27

I'm trying to create login form in C#. I store username and password in SqlServer 2008 express using the stored procedure [CODE]ALTER procedure [dbo].[InsertNewUser] ( @UserName varchar(30), @Password varchar(30) ) as If exists(Select 'True' from Users where UserName = @UserName) begin --This means that the user name is taken select …

Member Avatar for arunkumars
0
171

The End.