Informatix Neil's Q&A profile
Windows Forms Seems to be a bug in the way the Designer sets up bindings
Ok lets say I have a dataset dsEvent that contains a table Event that has a field called Name. Then I can set up a databinding by creating: ... System.Windows.Forms. Binding ( "Text" , this .dsEvent.Event, "Name" , true ) where this .dsEvent.Event is the datasource and Name is the dataMember and this works fine, but when I get the designer to automate this it creates the line: ... System.Windows.Forms. Bindin ...Show All
Windows Forms How to assign controls EventHandle to other control item?
Describe my problem: ToolStrip contain buttons and menus. User can drag and drop copy of any control from ToolStrip to form panel (Like windows tool panel). Problem: how do I can assign EventHandler for onClick event of duplicated control (button or menuItem). part of code: private void InitializeComponent() { ... this.b1 = new System.Windows.Forms.ToolStripButton(); this.b1.Text = " 1"; this.b1.MouseMove += new System.Windo ...Show All
Visual C++ Question about C++ char Pointer
When I use VC++ 6.0(with SP5.0) like this: char temp[2]; memset(temp,0,sizeof(temp)); strcpy(temp,"This is a test\0"); MessageBox(0,temp,temp,MB_OK); The result in temp[2] is "This is a test".There is only two bytes of memory,why can copy more than 2 bytes char I can see a demand for a reverse-engineered (or semi-so) Secure CRT for people to write ...Show All
Visual Studio Team System Code Profiling for ASP.NET application
Hi: I have looked through this forum and ASP.NET forum and could not find the solution. SO I just ask my question here. I had a file system ASP.NET application, run in http://localhost:1351/MyAspApp . I wanted to use code profiling to test the performance, so I followed the MSDN Library to set the performance session through Performance wizard. However, after launching the performance session, I got the following message: Launch Error: ...Show All
Visual Studio Express Editions No verification e-mail message
As with the beta 2, I am again unable to register the C# express edition. I simply do not receive any verification e-mail message, ever, from MicroSoft. Help is appreciated. Regards, Guido Hi Guido, Try this: go to http://profile.microsoft.com ; Log in with your passport account and view your profile. Do you have an email address on file If not, edit your profile to add your email ad ...Show All
Visual C# How to Convert HtmlData to string *** Urgent
Hello all, I am using C# 2.0, in my winApp. I am getting the HTML Data. I need this in string format. I don't want to use browser control. how to achieve this. anybody any sounds will be appriciated plz help me Add a reference to System.Web.dll to your project. At this point you will have access to System.Web.HttpUtility. Regards --mc ...Show All
SQL Server Push Merge snapshot fails with Data is Null message.
Hi, I'm converting a replication script from SQL 2000 to SQL 2005. I am getting an error with push merge with no way to figure out what is wrong. I've configured replication on a single XP server in SQL 2005 RTM version. I have a push merge set up between A and B and between B and C. All 3 databases are 9.0 compatibility. The snapshot and merge jobs for the A to B run fine with no errors, and merge replicates ok. The snapshot f ...Show All
Windows Forms CD burning
Hi, I would like to add the ability to archive my application's data to CD-R inside the application instead of using an additional CD burning software. Is there a component available to do this Thanks, Tobias Hello again... maybe it helps to&nbs ...Show All
.NET Development send mail with MailMessage object
I want to send mail in html format with MailMessage object. I found that if the body of my mail contains these html tags:object,script.iframe, these code fragment will be filtered. For example. the body of my mail is like this: <img src='a image url'> <hr> <object><embed src='a swf url'></object> When I received this mail . I found that what I received is : <img src='a image url'> ...Show All
Visual Studio Express Editions Books: Recommendations
My hope is this will become a sticky posting, so everyone can see it, use it and reply to it. I am looking for recommendations on books for Visual Studio 2005 & Visual Studio 2005 Express Edition (if there's a difference). If you know of any good books related to these, could you please post them here This way people will have a resource they can go to so they can find this type of information, especially beginners like me. I thin ...Show All
Visual C++ help on API's
Hi guys, is there a forum for discussing win API's especially waveform audio API's or can I ask questions here Thanks much! Use http://msdn.microsoft.com/newsgroups/topic.aspx url=/MSDN-FILES/028/201/015/topic.xml Thanks, Ayman Shoukry VC++ Team ...Show All
SQL Server "(rsInternalError) Index was outside the bounds of the array" after upgrade to SRS SP2
After upgrading to SQL Reporting Services SP2, we now get an error every time we try to run any of our reports. The error is "An unexpected error occurred in Report Processing. (rsInternalError) Index was outside the bounds of the array." Anyone have any suggestions I looked in the Report Server logs and see this error but there is no other information that points me to the problem. Thanks in advance. I also f ...Show All
Visual Studio Team System ProblemCollection
Hi I would like to know why FxCop show me only the first element. Thanks in advance public override ProblemCollection Check(Member member) { M ethod method = member as Method; if (method == null ) { return null; } if (method.NodeType == NodeType.InstanceInitializer) { return ...Show All
Visual Studio 2008 (Pre-release) Exception
While trying to learn about PeerChannel I came across Kevin Ransom's blog. When I try to run the example he posts here http://blogs.msdn.com/kevin_ransom/archive/2005/09/14/466534.aspx I get a SocketException that says "Unknown error (0x2ced)" Server stack trace: at System.ServiceModel.AsyncResult.End(AsyncResult asyncResult) at System.ServiceModel.Channels.PeerNodeImplementation.SimpleStateManager.OperationBase.End(I ...Show All
Windows Forms Can you use a ClickOnce Application in Compact Framework?
I cant find a publish tab for my project. Any suggestions... At this time, ClickOnce is not supported for Compate Framework. If you feel strongly about this, please feel free to go to the product feedback center on MSDN and add a suggestion: http://lab.msdn.microsoft.com/productfeedback/default.aspx This will go to the product teams. ...Show All
