MarshallR's Q&A profile
Visual Studio Express Editions remote control
hello i have my remote controll for my tv on my computer (i have a tv card in my pc) i would like to know if there is programing for remotes in vb. when i press a button i want it to trigger an event. thanks, average joe Check and see what programming interfaces the vendor has made available to you. They may use the acronym... "API" ...Show All
Visual Studio Tools for Office Please tell me where "using Microsoft.Office.Interop.Excel" is
I have received the sample about Excel object but I don't find this library. I'm using version 1.0. Someone knows this please tell me. Thanks a lot ! Here is a link to the VSTO installation instructions in our MSDN on-line help docs. http://msdn2.microsoft.com/en-us/library/54ds2za4(en-US,VS.80).aspx Thanks! Mike Hernandez Community Program Manager VSTO Team ...Show All
Visual Studio Team System Visual Studio Final and TFS Beta 3
Hi Will there be any problems building solutions developed in Visual Studio Professional (released today on MSDN) with TFS Beta 3 Thanks I was wondering about that. There's no sign of the Team System "Beta 3 Refresh", and also no RTM of SQL Server 2005 other than Developer Edition (as far as I can see). I'm going to try installing the VS Team Edition RTM on a sacrifical PC - I'll let you know how it goes. ...Show All
SQL Server SSIS and COM
Dear all, Does anyone know if exists any COM wrapper provider for SSIS TIA This doesn't seem to work for me. I am trying to load a pacakage from MSDB using LoadFromSQLServer instead of LoadPackage and I am getting an awkward message: "Method LoadFromSQLServer of object IDTSApplication90 failed" Can someone piont me in the right direction on how to use VB6 with SSIS ...Show All
Visual Studio Team System The node specified is not found in the classificaiton hierarchy
Using Beta 3. Used CMMI template to create new team project. Opened up "Areas and Iterations" windows for new project. Deleted Iteration 1 and 2 nodes. Renamed Iteration 0 node to 3.0.0. Tried to run "All Work Items" query and recieved this error: TF51011: The node specified is not found in the classification hierarchy. Is this a known bug For everyone falling into this problem, this command solved problem for me: witfields rebuildcache /s:<servername>:<port> This command will rebuild the cache on each client the next time they connect to the Team Foundation Server. To avoid server performance issues, you sho ...Show All
SQL Server Million Records Problem
Is there any way or approach on handling reports with million of records retrieved Had a problem for 25 silmultaneous users accessing the report. Problems are: - Timeout Expired. - Server unavailable. - Page cannot be displayed. Please let me know if there is... Thanks in advance... You should set the report to execute from a snapshot, otherwise each user access results in another 1M rows put into memory. ...Show All
.NET Development Connecting with MSDE to MS Access database
Hi, I must admit i'm a bit of a noob so go easy please! I've been trying to connect from a C# form to a MS access database through MSDE. I've been trawling the internet for hours and can't solve the problem. Here's my method: In .Net i've opened server explorer, right clicked Data Connections and selected add connection, opening 'Data Link Properties'. I've inputted Server Name 'WORK' Put in user name 'sa' password 'hello' At this point the test connection works. I then want to select the database. I'm given 4 options, master, model, msdb, tempdb. Not sure what they are for. Could someone explain Anyway I need to connect a dat ...Show All
Windows Search Technologies #msntb_toolbar_full_name#
I have the following sign come up on the screen. #msntb_toolbar_full_name# is unable to load config file. If you recently upgraded to a newer version of #msntb_toolbar_full_name # and have not restarted your computer since the upgrade,please try resarting your computer.If the problem persist,please reinstall the #msntb_toolbar_full_name#. I'm currently running WXP Home Edition,IE7. W Defender.This problem only occured after I completed system restore two days ago. Thanks to any person who can help. CEEBEE Hi Ceebee, Since your post doesn't relate to Windows Desktop Search may I suggest ...Show All
Visual Basic setup project can not build
Hi, I am using vs 2003 to build a setup project but got this error message "Could not find file ..., Not enough storage is available to complete this operation." I checked the path of the file, it is correct. After I remove this file from the setup project, I can build it successfully and the result msi file is about 250MB, the file I removed is about 260MB, is there any limitation about the size of the file in setup project or the total size of msi file If so, how can I build the setup project I appreciate your help. I'm getting this error now on simple projects (basic Windows app w/ 1 form). ...Show All
Visual C++ warning C4996: 'foo' was declared deprecated
It appears that several standard C and C++ functions have been 'deprecated' in this version of compiler. This is a major annoyance since neither C nor C++ standards seem to mention this. Naturally, it is possible to disable unwanted warnings, however doing this manually for every project is a pain in the arse. Is there a compatibility mode Thanks, - NK This is a request for future versions of c and c++ compilers. Because these languages defined by ANSI/ISO standards, the only organizations that can declare c/c++ library functions to be deprecated are ANSI and ISO. I'm requesting that Microsoft pleas ...Show All
Visual Studio Express Editions Visual Web Developer
Is just installed the Visual Web Developer to start wit the .net technology. After uploading the included sample site to my 2003 webserver i'l get the following error. Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. Parser Error Message: Could not load file or assembly 'file:///C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\94b78f69\1ffd913b\App_Web_default.master.cdcab7d2.wvtcepbs.dll' or one of its dependencies. The system cannot find the ...Show All
Smart Device Development Installing Microsoft .Network Framework 1 and 2.0
I use my computer to browse the Internet and for E-Mail. Do I need to install these two programs I am using XP Home Edition. Thank you. This forum is device related, please post to relevant forum or news group: http://support.microsoft.com/newsgroups/default.aspx Closing as off topic. ...Show All
Visual C++ Memory Leak and New
I'm a bit confused about the utility of crtdbg.h if I use the new function. If I use malloc I get a nice report saying that line x of file y leaked z amount of memory. Nice. If I use new, I get a pretty useless report that line 691 of crtdbg.h leaked z amount of memory. Well gee, thanks. I KNEW that new is being redirected to that inline function in crtdbg.h, I was kinda hoping maybe you could tell me where I came from, not where I went. Here is the source: #define _CRTDBG_MAP_ALLOC #include <stdlib.h> #include <crtdbg.h> int main(int argc, char* argv[]) { _CrtSetDbgFlag ( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF ); int* lea ...Show All
Visual C++ msvcr80.dll not found
I've created a simple Win32 console application. When I try to debug it, I get the message: "This application has failed to start because MSVCR80D.dll was not found. Re-installing the application may fix the problem." The Release version runs fine. Any idea as to what the problem could be Thanks, Jonny This means several things. a) your console application does not have manifest. Either embedded inside or external. To check this, do the following: `1. Check for <appname>.exe. manifest next to exe. If it is not there, it may be embedded. Go to step&nbs ...Show All
Visual C# ARROW, BACKSPACE, ENTER keys locked and are not functioning !!!
the issue may seem stupid enough, but not mystical. The behavior started to show self after I set "Visual Source Safe" as "Source Control" tool. As you check out the item you're not able to use any of the above typed keys, but others and mouse. You can achieve NORMAL_EXPECTED_BEHAVIOR of the keyboard as you close and start the Visual Studio again. And here is the mistical point that should explain. Where is that magical option box that I should set false/true that to get back the NORMAL_EXPECTED_BEHAVIOR of the keyboard and environment And which edition is that in the future that the environment will not assume developer as a stupid pi ...Show All
