Click here to Skip to main content
15,910,471 members
Home / Discussions / C#
   

C#

 
GeneralRe: How Can I Hide String Key Pin
Curtis Schlak.10-Mar-09 13:23
Curtis Schlak.10-Mar-09 13:23 
GeneralRe: How Can I Hide String Key Pin
Mark Churchill10-Mar-09 14:02
Mark Churchill10-Mar-09 14:02 
GeneralRe: How Can I Hide String Key Pin
dataminers11-Mar-09 1:42
dataminers11-Mar-09 1:42 
GeneralRe: How Can I Hide String Key Pin
harold aptroot11-Mar-09 2:37
harold aptroot11-Mar-09 2:37 
GeneralRe: How Can I Hide String Key Pin
dataminers11-Mar-09 5:19
dataminers11-Mar-09 5:19 
GeneralRe: How Can I Hide String Key Pin
harold aptroot11-Mar-09 6:42
harold aptroot11-Mar-09 6:42 
QuestionDatasets and Reports Pin
Jacob Dixon10-Mar-09 7:16
Jacob Dixon10-Mar-09 7:16 
AnswerRe: Datasets and Reports Pin
Samuel Cherinet10-Mar-09 10:08
Samuel Cherinet10-Mar-09 10:08 
well,
what visual studio does when storing connection strings is, it only codes the get method of the "connection string" property. this is an auto generated code,you will find it in a file called "Settings.Designer.cs"

you will find a code roughly like this

<br />
[global::System.Configuration.ApplicationScopedSettingAttribute()]<br />
        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]<br />
        [global::System.Configuration.SpecialSettingAttribute(global::System.Configuration.SpecialSetting.ConnectionString)]<br />
        [global::System.Configuration.DefaultSettingValueAttribute("Default Connetction string")]<br />
        public string Setting {<br />
            get {<br />
                return ((string)(this["Setting"]));<br />
            }<br />
//add this set method for this properit<br />
            set<br />
            {<br />
                this["Setting"] = value;<br />
            }<br />
        }<br />


delete the default connection string and assign it before trying to fill the dataset

hope it works for you,
GeneralRe: Datasets and Reports Pin
Jacob Dixon10-Mar-09 17:26
Jacob Dixon10-Mar-09 17:26 
Questionhow to make network in graph topology Pin
sunnyk8610-Mar-09 6:51
sunnyk8610-Mar-09 6:51 
AnswerRe: how to make network in graph topology Pin
musefan10-Mar-09 7:26
musefan10-Mar-09 7:26 
QuestionCombobox value Pin
andrejmk10-Mar-09 6:31
andrejmk10-Mar-09 6:31 
AnswerRe: Combobox value Pin
Xmen Real 10-Mar-09 6:35
professional Xmen Real 10-Mar-09 6:35 
QuestionHow to display images in subitems of a listview control using <b>C#</b>? Pin
ADIDADPU10-Mar-09 6:22
ADIDADPU10-Mar-09 6:22 
AnswerRe: How to display images in subitems of a listview control using C#? Pin
Xmen Real 10-Mar-09 6:31
professional Xmen Real 10-Mar-09 6:31 
QuestionHow to convert html to pdf using C# tried to do but got error Pin
YiXiang_8910-Mar-09 5:39
YiXiang_8910-Mar-09 5:39 
AnswerRe: How to convert html to pdf using C# tried to do but got error Pin
Jack Li10-Mar-09 5:57
Jack Li10-Mar-09 5:57 
AnswerRe: How to convert html to pdf using C# tried to do but got error Pin
Curtis Schlak.10-Mar-09 6:10
Curtis Schlak.10-Mar-09 6:10 
QuestionvSystem.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer,Int32 offset,Int32 size,SocketFlags socketflags,Endpoint& remoteEP) [modified] Pin
mrithula810-Mar-09 4:28
mrithula810-Mar-09 4:28 
AnswerRe: vSystem.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer,Int32 offset,Int32 size,SocketFlags socketflags,Endpoint& remoteEP) Pin
Jimmanuel10-Mar-09 6:27
Jimmanuel10-Mar-09 6:27 
GeneralRe: vSystem.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer,Int32 offset,Int32 size,SocketFlags socketflags,Endpoint& remoteEP) Pin
mrithula811-Mar-09 19:01
mrithula811-Mar-09 19:01 
GeneralRe: vSystem.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer,Int32 offset,Int32 size,SocketFlags socketflags,Endpoint& remoteEP) Pin
Jimmanuel12-Mar-09 3:28
Jimmanuel12-Mar-09 3:28 
AnswerRe: vSystem.Net.Sockets.Socket.ReceiveFrom(Byte[] buffer,Int32 offset,Int32 size,SocketFlags socketflags,Endpoint& remoteEP) Pin
mcldev10-Mar-09 10:32
mcldev10-Mar-09 10:32 
QuestionCan't use base canvas as event dispatcher? Pin
emptythetill10-Mar-09 3:50
emptythetill10-Mar-09 3:50 
AnswerRe: Can't use base canvas as event dispatcher? Pin
emptythetill10-Mar-09 5:28
emptythetill10-Mar-09 5:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.