ManishPPPP's Q&A profile
Visual Studio Tools for Office Can't Install Visio 2005 Beta 2
Will do that, thanks. ...Show All
SQL Server Distribute ReportBuilder
Hi, Is there a way to distribute Report Builder application to clients computers (avoiding them to connect and download individually the application on the Reports WebSite) Thanx in advance. Gregory. No. Report Builder's distribution mechanism is via ClickOnce. From what I understandthere are no plans to allow distribution in any other fashion. Sorry! ...Show All
Visual Basic Bug: Accessing array of objects in a function
When I try to use an array of objects through a function or certain types of subs, I get a NullReferenceException and a TypeInitialization exception. Any subs tied to a button do not cause this. This code explains better: This is in a module: Public checkBoxes() As CheckBox = {frmLaunch.uiCheckBoxDeveloper, frmLaunch.uiCheckBoxDebugFile, frmLaunch.uiCheckBoxAltDeath} This sub will use the checkbox array with ...Show All
Windows Forms DataGridView Odd Behavior
I have been trying to track down an issue in an application that I am writing. I finally deteremined that it isn't some of my code directly creating the issue. I have created a small application to demonstrate this odd behavior. The odd behavior is that if the DataGridView is loaded with data, then that data is deleted, then another control is selected, then the user goes back and enters data into the DGV, instead of 2 rows (the row with data ...Show All
Visual C# MCE Remote Control
Hi! I'm new the forums, so please excuse me if this has been brought up before. Anyway, my question is if anyone knows how to directly receive codes from a eHome Media Center remote that comes with many new Media Center PCs. The reason why I ask is that I'm attempting to write a WinLIRC server for the remote. While some commands on the remote already output as "normal" keystrokes, some however do not; for example the Play button. The only ...Show All
Visual C++ Support for dual core and dual CPU
When does Microsoft plan to add support for dual core and dual cpu when compiling C++ code I was asking the same question 8 years ao when I got my first dual CPU machine. Did not get any answer. Distributed compilation like Incredibuild would also be nice to have. Regards Lars Schouw Ted. wrote: ok this is killing me, take a look at the following file for another clue ...Show All
Visual C# any samples on implementing delegates?
any samples on implementing delegates ms-help://MS.VSCC.2003/MS.MSDNQTR.2005JAN.1033/csspec/html/vclrfcsharpspec_1_10.htm There are three steps in defining and using delegates: declaration, instantiation, and invocation. Delegates are declared using delegate declaration syntax. The example delegate void SimpleDelegate(); declares a delegate named SimpleDelegate that takes no arguments and returns no result. The example class Test { & ...Show All
.NET Development HttpWebRequest.GetResponse(); Performance issue.
This call is very slow in being called... First time I call it, the method will return in 4 - 5 seconds. The website is fast and has minimal content to return. If I run it again quickly the GetResponse runs very quick.. If I wait about 5 seconds after the last invocation, the call reverts back to being slow again.. Caching issues Any on from Ms willing to help out here Thanks in advance. Have you ...Show All
Windows Forms OracleParameterCollection Problem
Hi there, I receive the following message when I run my function that executes an Oracle Stored Procedure: The OracleParameter is already contained by another OracleParameterCollection Does anyone know why this is happenning Below the code I used: Private Overloads Function Oracle_ExecuteProcedure(ByVal ProcedureName As String, ByVal Parms As OracleClient.OracleParameter()) As Integer ...Show All
SQL Server Dynamic building of reports in C# for ASP.NET
I saw a post earlier referencing a book on how to dynamically building reports. But does anybody know of a web site I can review to simply get an idea of how to do it to see if this is what we want to do vs simply using a data grid for reporting. Thanks It's a lot of work. This article is a start. http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnsql2k/html/AdHocRepSr.asp ...Show All
Visual Studio Team System Rollback a changeset?
Hello, How do rollback a specific changeset, or rollback *to* a specific changeset I've been poking around and the only way I could figure out is to checkout a specific version, then check it back in. But that seems wrong... Thanks -Micheal I asked about this a while ago and was told that this feature got cut from V1. You can read more about it here: http://forums.microsoft.com/msdn/ ...Show All
Visual C++ Microsoft COM Components on 64 bit ?
I tried to port my application over to 64 bit. I was unable to port the code that used the standard Microsoft Data Grid Control (6.0) or any other microsoft COM component while running on 64 bit. I did not get any compiler errors, just at run time i got the Debug Assert Error... Can we not use any of the MS COM Components for developing apps on 64 bit Thanks Hi Kang, Based on my previous 2 posts, I was wondering if you found any mor ...Show All
Visual Basic How to view out-of-scope variables with debugger?
Good morning: Can anyone tell me the trick for viewing out-of-scope variables while debugging I have a time-dependent application that I cannot stop by using a breakpoint (and get predictable results anyway). I could write values to the quick-console, but I don't always know what variable I want to look at in advance. Stopping the application to re-write the code often alleviates the problem that needed debugging. I have read several books ...Show All
Visual Studio Team System CA1804 false positive?
Here's the message: Target : GetInfo(System.Object):System.String (IntrospectionTargetMethodBase) Id : myBar (String) Resolution : "ABC.GetInfo(Object):String declares a local, 'myBar', of type Foo.Bar, which is never used or is only assigned to. Use this local or remove it. " Here's all of the code in this method in which myBar appears: Dim myBar As Foo.Bar myBar = New Foo.Bar GetInfo = myBar.Zot(Ar ...Show All
Visual C# Multiple updates to an Active Directory user in one pass
I'm trying to update a set of users in Active Directory from an Excel spreadsheet. This is how I'm doing it now: (oRow is a DataRow object) SearchResult result = search.FindOne(); if (result != null ) { DirectoryEntry user = result.GetDirectoryEntry(); if (user.Properties[ "employeeNumber" ].Value == null ) user.Properties[ "employeeNumber" ].Add(HashSSN(oRow[ "SSN" ].ToString())); if (oRo ...Show All
