Click here to Skip to main content
15,880,392 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: T-SQL for everything?? Pin
Colin Angus Mackay18-Apr-06 20:55
Colin Angus Mackay18-Apr-06 20:55 
AnswerRe: T-SQL for everything?? Pin
HimaBindu Vejella20-Apr-06 20:47
HimaBindu Vejella20-Apr-06 20:47 
AnswerRe: T-SQL for everything?? Pin
JimRoss2-May-06 11:51
JimRoss2-May-06 11:51 
QuestionGame server? Pin
Gwedion18-Apr-06 17:11
Gwedion18-Apr-06 17:11 
QuestionGetting the right permissions set up to use windows forms in aspx???? Pin
coder62618-Apr-06 9:28
coder62618-Apr-06 9:28 
QuestionRun service through svchost Pin
_maniaque18-Apr-06 8:30
_maniaque18-Apr-06 8:30 
AnswerRe: Run service through svchost Pin
Dave Kreskowiak19-Apr-06 5:45
mveDave Kreskowiak19-Apr-06 5:45 
QuestionUserControl Data binding & BindingSource.EndEdit() Effect Pin
Sassan Komeili Zadeh18-Apr-06 3:02
Sassan Komeili Zadeh18-Apr-06 3:02 
I have written a simple user control with just a TextBox control on it and bound Its MyText Property to a DataTable Column. Using 2005 UI facilities I dragged this control from dataSources window on the form.In the form_load I fill my DataTable and by clicking a button I Call the associated BindingSource.EndEdit() whitout doing any change.But my underlying DataSet HasChanges() method returns true!? how can I Fix this problem. here is my controls source:

[DefaultBindingProperty("MyText")]
[Serializable]
[ToolboxItem(true)]
[DefaultProperty("MyText")]
public partial class TextCtl : UserControl
{
public TextCtl()

{

InitializeComponent();

}



public string MyText

{

get { return textBox1.Text; }

set
{
if(!textBox1.Text.Equals(value))
textBox1.Text = value;
}

}

}



QuestionQuestion: How to specify default property to debugger? Pin
Guido_d18-Apr-06 2:03
Guido_d18-Apr-06 2:03 
AnswerRe: Question: How to specify default property to debugger? Pin
Dave Kreskowiak18-Apr-06 2:32
mveDave Kreskowiak18-Apr-06 2:32 
GeneralRe: Question: How to specify default property to debugger? Pin
Ricardo Casquete19-Apr-06 2:36
Ricardo Casquete19-Apr-06 2:36 
GeneralRe: Question: How to specify default property to debugger? Pin
Dave Kreskowiak19-Apr-06 5:42
mveDave Kreskowiak19-Apr-06 5:42 
GeneralRe: Question: How to specify default property to debugger? Pin
Ricardo Casquete19-Apr-06 6:23
Ricardo Casquete19-Apr-06 6:23 
GeneralRe: Question: How to specify default property to debugger? Pin
Guido_d19-Apr-06 23:11
Guido_d19-Apr-06 23:11 
GeneralRe: Question: How to specify default property to debugger? Pin
Dave Kreskowiak20-Apr-06 2:34
mveDave Kreskowiak20-Apr-06 2:34 
Questioncreating cd-rom database application Pin
vijayendra_shinde18-Apr-06 0:12
vijayendra_shinde18-Apr-06 0:12 
AnswerRe: creating cd-rom database application Pin
Dave Kreskowiak18-Apr-06 2:24
mveDave Kreskowiak18-Apr-06 2:24 
QuestionLow level operations to devices Pin
fvalerin17-Apr-06 9:48
fvalerin17-Apr-06 9:48 
AnswerRe: Low level operations to devices Pin
Dan Neely17-Apr-06 10:40
Dan Neely17-Apr-06 10:40 
QuestionConverse of measurestring Pin
deletethisprofile17-Apr-06 6:18
deletethisprofile17-Apr-06 6:18 
AnswerRe: Converse of measurestring Pin
Guffa17-Apr-06 6:42
Guffa17-Apr-06 6:42 
QuestionASP.NET not working Pin
Petals16-Apr-06 19:59
Petals16-Apr-06 19:59 
AnswerRe: ASP.NET not working Pin
Ravi Bhavnani16-Apr-06 20:12
professionalRavi Bhavnani16-Apr-06 20:12 
GeneralRe: ASP.NET not working Pin
Kevin McFarlane22-Apr-06 5:21
Kevin McFarlane22-Apr-06 5:21 
Questionvisual studio.net 2003 script engine error on parsing script file Pin
Shahid_78615-Apr-06 6:25
Shahid_78615-Apr-06 6:25 

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.