chill_pill's Q&A profile
Windows Forms 'System.NullReferenceException' when call a Web Service
Hi, there I Invoke Web Service, it's fine. ********Code Here**************************** CalcWebService calc = new CalcWebService(); AsyncCallback cb = new AsyncCallback(GetAddCompleted); IAsyncResult res = calc.BeginAdd(2, 2, cb, null); private void GetAddCompleted(IAsyncResult res) { int& ...Show All
Visual Basic RichTextBox Control - Lack of Span() method
In previous versions of Visual Basic, such as version 6.0, I have been able to use the RichTextBox control's Span() method to select data. However in Visual Basic .NET 2005 I have not figured out how to do so. Is there a new method equivalent to the Span() method in previous versions of the control, and if so what is it Ok, here you go, you're very own span function.... Note, there's probably a better faster one out there (The ...Show All
Microsoft ISV Community Center Forums how to delete all names in workbook?
ActiveWorkbook.Names("myName").Delete code above is to detele name "myName" from the active workbook. then if i want to delete all defined names in the active workbook, what would be the code ActiveWorkbook.Names("myName").RefersToRange.ClearContents ActiveWorkbook.Names("myName").Delete That should do the trick. ...Show All
Windows Forms Publishing Location, Installation URL, Update Location
Hi All, I am using one click and I confess I am confused over the use of the Publishing location, the installation URL and the Update location. I will tell you what I am trying to do and perhaps someone can straighten me out. The initial installation of my application comes with a database that I include in my initial installation deployment. However, after the intial deployment, I do not want the database being included in future u ...Show All
SQL Server Join problem
hi I have got two tables and each table has about 8000000 rows.. the format of the tables is as follows.... Table 1 Comnpany_name Id Year Volume_jan Volume_feb....... Volume_dec ABC 1 2000 12 34 44 ABC 2 2000 222 50 44 .................................................................................................................... ...Show All
SQL Server Changing Column and Row Heading in MDX
I am trying to change the default row and column heading to make it more meaningful to the user in MDX. Can you please help me. This is done easily in SQL like SELECT the_actual_cost AS cost...... Thanks in advance. Riju Hi Peter, I am using one measure in multiple reports and trying to give them different names in different reports to make it more meaningful. Thanks Riju ...Show All
.NET Development ProgressBar with FTP is it possible?
hi. I am new to .NET forms and C# application. I am trying to implement a simple UI that privdes button click to download a FTP file. I am using the Webclient class and WebRequestMethods.FTP.DownloadFile method for request's methods. I am read the stream using the streamreader. FTP works fine. Now i want to add progressbar to show progress of the file. is there anyway to do I have looked up few examples of downloadfileasync method combine ...Show All
SQL Server Msg 3910 Transaction context in use by another session.
We are testing SQL 2005 SP1 in a multi-server environment. Stored Procedure 'A' is executed on server.database 'A'. It calls SP 'B' on server.database 'B'. SP 'B' in turn calls SP 'C' which is back on server.database 'A'. So in essence A calls an SP on B, which calls an SP back on A. Linked servers are present on both servers to enable these cross-server calls. This scenario works in our SQL 2000 environment. In the SQL 2005 environment, we ...Show All
Visual C++ Merge IDEs
I find the MSVC .NET GUI just awfull... (no offence :P). Is it possible to use the .NET linker and compiler with MSVC 6 Thanks. Speaking of moving folders. Moving/reordering folders at least manually in the project (text) file worked well before 2005 and is broken in 2005 (now all folders are sorted alphabetically no matter what you do - maybe the C# team pressured them for this, but we C++ guy ...Show All
Windows Forms docking ...
why can we not have two controls on a form and both have Fill set for Dock property, so that when one control is collapsed the other one takes the remaining area and vice versa In the <A HREF="http://www.windowsforms.net/Appl ...Show All
.NET Development error try project only build - 2005 beta , build type x64
receving the dreaded "operation could not be complete - unspecified error" message box . I see that another user has the same problem and is reporting it in the Microsoft Technical Forums Visual C++ Visual C++ General VC2005 Beta2 Crashes I'm going to cross reference my issue to that one as I have done here . Maybe someont at MS can help ...Show All
SQL Server HELP: Failed to create the task. (Microsoft Visual Studio)
I created my first SSIS project in BI Dev Studio but get the following error when trying to add a data flow task to the Control container: ================================== Failed to create the task. (Microsoft Visual Studio) =================================== Value does not fall within the expected range. (Microsoft.SqlServer.ManagedDTS) ------------------------------ Program Location: at Microsoft.SqlServer.Dts.Runtime.Exec ...Show All
Visual Studio Team System Beta2: Cannot create a Team Project
I am not able to create a new team project. I'm logged in as a domain user with local administrator membership. On the last screen of the wizard I get this Process creation failed with error: "Initializaton failed for plugin(s): "Microsoft.Pcw.wss"" Here's the log content: 04/22/2005 01:48:54.478 | Module: ELeadServiceMediator | URL for eLead web service retrieved as " http://syd-3rtest:8080/bisserver/EleadWebService.asmx " from the registr ...Show All
Windows Forms AxHost hosted ActiveX control and focus related events
When hosting an ActiveX control on a Windows Form the Leave, Validating and Validated events are not raised for the control that previously had input focus when one moves input focus to the ActiveX control. The form behaves as one has clicked on a different application, only LostFocus is raised. Is this by design, or are there any extra steps that need to be performed to make this work One idea I got was to add some event to the Act ...Show All
Visual Studio Express Editions windows control library
Hi to All, I installed express edition.I want to create custom controls.For this windows control library is needed,but in express edition there is no template for windows control library.How to get it. You don't need the template. Just create a new library project, and add references to System.Drawing, System.Windows.Forms and anything else you might need... ...Show All
