Bobbyboy's Q&A profile
Visual Studio Team System FxCop fails to locate a present assembly
I have a web app that uses Innova Studio's WYSIWYG editor - the DLL is included in the BIN directory. Each time I run code analysis FxCop throws an error that it can't load the dll My guess is that this DLL is v1.1. FxCop does not currently permit a 3rd-party component that is versioned differently than the binaries under analysis. We're looking at resolving this in a tool update. ...Show All
Visual Studio 2008 (Pre-release) Canvas, Shapes, and Events. What's happening here?
I've noticed some interesting behaviour with events on a Canvas, and I was just wondering what is going on. I have a custom GridControl with a Canvas on it, that has a handler for the Canvas MouseDown event. uiElement.MouseDown += new System.Windows.Input. MouseButtonEventHandler (uiElement_MouseDown); I've added some PolyLines to the canvas, and I've noticed that if I click on the lines, then my event handler doesn't get called. So ok I add an event handler to the PreviewMouseDown event to see if I can get the event before it gets to the Shape, but that doesn't work. OK, I put a transparent Canvas over the top of it all, and I ...Show All
SQL Server server problem occurred during deployment of vb.net application with MSSQL db
I use .net 2005 and server, the application i developed connects to a locally hosted mssql db, I want to deploy the application together with the db to client machine. when i installed the application on the target machine, and run the application, it gave me this message : "an error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error: 40 - could not open a connection to SQL Server) I didn't quite understand this message. because in the "S ...Show All
Visual Studio Express Editions serial port will not trigger data received event.
Hello All, I have this problem that is driving me crazy. First I need to say that the test bed is a virtual null modem and another piece of software I have written that sends data serially. I am able to get this to work flawlessly using MSCOMM, but I want to figure out why it will not work with VB2005 express Serial port. Here is the serial port code. Private Sub Form1_Load( ByVal sender As Object , ByVal e As System.EventArgs) Handles Me .Load 'MSComm1.PortOpen = True 'MSComm1.RThreshold = 1 If SerialPort1.IsOpen = False Then SerialPort1.Open() If RadioButton1.Checked = True Then warn_charge() ...Show All
Visual Studio Express Editions VC++
Why I can not add a function or a variable in class. I recommend reading the sticky post on how to ask questions. You should choose a subject that means something. I can't imagine why you can't add functions or variables. Given that you do this via the text editor, perhaps you need to read a book on C++ ...Show All
Visual Studio Team System Warehouse not updating after upgrading to RC
Everything except reports seem to be working fine after the upgrade. When I go to run a report there is no data in it. When I run the scripts in the Warehouse Troubleshooting guide the Last processed time is null. I try to go through the controller web service and it dies on the ProcessingOLAP step. I am set up in a dual tier configuration. On the SQL box there are entries in the Event Log every time the Scheduler tries to update the Warehouse with the following error OLE DB error: OLE DB or ODBC error: Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'.; 42000. Any ideas I have looked at the permissions of the Olap Service and ...Show All
Visual FoxPro Use Customer VB Functions with FoxPro
Hi there, I have heard that you can create a custom Class Library DLL in Visual Basic to be included in FoxPro 9.0. I have custom code to manipulate PDF's and would like have access to the classes in a FoxPro interface. Does anyone know how to do include a DLL Thanks for the help. As far as I know the only requirements are that it must implement the IDispatch and IUnknown interfaces and that it must be compiled (and registered) as a Multi-Threaded COM+ DLL. Then the class can be instantiated in VFP using oObject = CREATEOBJECT( "DLL.CLASS" ) ...Show All
Visual Basic Easy way to work with Time Zones
Hello, I have a problem. How can I easily work with different time zone client of my asp.net 2.0 application live at different part of the states, and I like to write a vb class to handle there time. Help Alan, I'm not sure what your exactly asking for here. If you want to store the date/time in a value which can be used to ensure that you can determine the actual time of say a transaction on a coordinated basis then Universal time is what you would be looking at. Then you can convert between local and universal time with ease. So they see local time on there applications but you are actu ...Show All
Visual Studio Tools for Office Using VB Forms in Word 2003
Hi, i have been playing with visual studio in office 2003 - Word 2003 in particular. I am trying to create a user entry form that appears for people to fill in and then submit at the bottom. Once the form has been filled it i would like the system to take the information provided by the user and update it into the word document. Its a letter creator for a small business so they dont have to type out in the standard letter format as this form will do it for them. I am using the normal fields such as name, address, date etc so any help would be excellent. I know its possible but i cant quite figure out how it works. Could someone advise me Th ...Show All
SQL Server SQL Mobile Installation Problem on Device
I have been unable to properly install SQL Mobile 2005 on my armv4i windows CE 5 device. Below is a summary of what I have found and done. Any help in resolving my issue will be appreaciated. Thanks in advance for your help. Symptoms: No errors occur during installation of SQL Mobile on the device via cab files (either deployed through VS2005 or manually copied and installed on the device) SQL Mobile 2005 appears to be installed, can see it in the device remove programs list. All 7 SQL Mobile dll files are present in the windows folder. (sqlceca30.dll, sqlcecompact30.dll, sqlceer30en.dll, sqlceme30.dll, sqlceoledb30.dll, ...Show All
SQL Server Page error in Report Subcription Properties Page
Dear Anyone, I have an RS report that has about 7 multi-select parameters. Each of those parameters gets it's value, both content and default in their corresponding data sets. Whenever I try to make a subcription for this report and I try to change the parameters used in the subscription, the page goes to "Error On Page" mode. Afterwhich nothing else happens. Can anyone please shed a light on why this is happening We're using the RC1 build of SQL Server. Thanks, Joseph I have not encountered this issue before, but it sounds like it might be a bug. I would suggest contacting customer support to help resolve the issue. -Daniel ...Show All
Visual Studio Team System Retrieving codecoverage info programmatically “off-road” code coverage experience.
hi, i have reffered the url http://blogs.msdn.com/ms_joc/articles/406608.aspx that says how we can retrieve the codecoverage info from an assembly/exe. i am using the code to create the coverage file after retrieving the coverage info. /******************************************************* Collecting code coverage info from assemblies/binaries. ********************************************************/ public void CreateCoverageInfo( string strFileArtifact, string strCoverageFilePath) { const string VSTS_INSTRUMENTING_APPL = "vsinstr.exe" ; Process objProcess = new Process (); StringBuilder objStringBuilder = n ...Show All
Visual Studio Team System VSS Converter, Solution Files still reference VSS
Hello, We have been trying to find an easy way to move our VSS source code into the Team Foundation Source control. As a test, I created a sample SourceSafe database and added a skeleton solution for a Windows Application. I realized that I had to manually create the Team Project before I could use the VSSConverter tool on the specific project in SourceSafe (that's the first question, in doing a bulk migrate, must there be a Team Project defined for every single project ). After successfully migrating that single project, I tried opening it in Visual Studio 2005 Beta 2 (through the Source Control Explorer), and it errored o ...Show All
Windows Forms IE7 and Google Calendar
Probably the wrong spot to post this question, but what the hell. When will IE7 Beta2 work correctly with Google Calendar It works fine with Firefox. Whuzzup with that ...Show All
Visual Studio Express Editions Express install lockup
Hello! I've downloaded the visual c++ express installer only to find that it locks up during its "Setup is loading installation components, this will take a minute or two" part. Keep in mind that I have no proir 'beta' versions installed on this machine. In fact it's a fresh install of winxp pro with all the updates. Machine: Amd64 3000+ 1024meg ram ATI Radeon 9800 Pro and a pathetic keyboard w/out the space bar :) Let's keep this one going and see if anyone comes up with a solution. I'm getting exactly the same problem with both Visual Basic AND C++ Express installs. Basically, the progress bar gets as ...Show All
