onewebclick's Q&A profile
Smart Device Development DeviceEmulator 2.0 Community Tech. Preview
The DeviceEmulator 2.0 Community Tech. Preview has gone live, at http://www.microsoft.com/downloads/details.aspx FamilyId=13F5DE85-30CD-4506-9C5B-A2068FA1EE9E&displaylang=en . V2 has: Much improved performance DEComInterfaces.idl - the COM interface to the emulator, along with sample code showing how to use DMA to communicate between a Windows app and an app or driver running inside the emulator. This is the DeviceEmulator's eq ...Show All
Visual Studio Express Editions Quick question about SQL databases
I'm following the C# video tutorials about creating an RSS reader. I'm about halfway through the videos and just completed the lesson about creating, accessing, and modifying an SQL database. My question is, and please forgive me if the author of the video series touches on this in a later video, if I were to use an SQL database for this RSS reader application and decided to install it onto another computer, would I be able to use or acces ...Show All
Visual Studio Express Editions How to set traffic priorities?
Tell please! How it is possible to establish a priority on the traffic on this or that process or a thread hi, the thread has periority property you can use it something like this MyThread.Priority = ThreadPriority .Normal MyThread.start() hope this helps ...Show All
SQL Server set parameters in sub-selects
I'm trying to execute the following statement in a 'execute sql task'. DELETE FROM WORK_EFFORT_PROCESSOR_POINTS_F WHERE (WORK_ITEM_ID IN (SELECT WORK_ITEM_SNAPSHOT_F.WORK_ITEM_ID FROM WORK_ITEM_SNAPSHOT_F INNER JOIN AUDIT ON WORK_ITEM_SNAPSHOT_F.AUDIT_ID_UPDATE = AUDIT.AUDIT_ID WHERE (AUDIT.DW_DATE_UPDATE > ))) I keep getting : "Incorrect syntax near ' ...Show All
SQL Server Connection to Oracle
I have created reports in SQl Server 2005 Reporting Services using an Oracle Data Sources. When I Preview the report in VS 2005, It runs fine but when I deploy it, it fails to make a coonection to the oracle data source. Reports off the SQL Server Data Sources arerunning fine. Can any one out there help me out on this. I will really appreaciate. Regards, Sam. Assuming Oracle's client software is installed on the report ...Show All
Smart Device Development Pocket PC 2003 emulator and Sql Mobile
Hi all, I compiled up a simple SQL Mobile application on vs2005beta and deployed to the PC 2003 emulator. However when it runs it fails with an error message 'the application <> requries a newer version of microsoft .NET Compact framework than the version installed on this device'. the src is from http://samples.gotdotnet.com/quickstart/util/srcview.aspx path=/quickstart/CompactFramework/samples/sqlcedbcreate/sqlcedbcreate.src ...Show All
Visual C++ File open errors returned when trying to open a file for appending
I am trying to open a file for appending. ie. if the file exists, open it for appending, if not, create it. I am getting back a NULL pointer, and do not know why. Here is my code excerpt. It is a C file. FILE *pFile; char *cFileName; cFileName=argv[++i]; pFile = fopen(cFileName,"a"); cFileName has a valid filename ('apm.dbg'), and I have full write permissions in the directory. I can step into fopen and when the file is opened, ...Show All
SQL Server Upgrade WMSDE to SQL Server
I'm trying to upgrade WMSDE to SQL Server 2000. I run the SQL Server setup and an upgrade option is not available on the corresponding dialog (second or third in a row). I installed Windows Sharepoint Services with all the defaults, including the WMSDE. Where did I go wrong How should I upgrade the DB in this case Thanks ...Show All
Visual C# How do I add a new connection string?
I was trying to use ConfigurationManager.ConnectionStrings.Add(settings) but that returns a read only exception. Is there another way to do this thanks dave Hi, Try this: Add your connection string to your webconfig. < connectionStrings > < add name = " ConnectionString1 " connectionString = " server=serverName;database=DataBaseName;uid=;pwd=; " providerName = " S ...Show All
Visual Basic AnalogTVTuningSpace and MSVidCtl
I´m trying to develop a decent tv tuner/capture application (since there are no such apps, nowhere, I say) in Visual Basic 6.0. I´m using the MSVidCtl component together with the AnalogTVTuningSpace and IChannelTuneRequest object to achieve this, as desc ...Show All
Visual C++ error occur when develop in Visual C++ 6 and compile in Visual Studio 2005
The code wrote in VC++ 6 (no error when compile) but now I have to move them to the Visual Studio 2005 version and try to compile it again it give me the error ==> fatal error LNK1104: cannot open file 'LIBC.lib'. Please help I'm still so new with Microsoft Visual Studio 2005. Are they so much differences. Thanks for your help in advance, Akiwa You need to change all calls to these functions to use the new, safe ones, or turn o ...Show All
Visual C++ Linking Problems - newbie
I used the project wizard to create a Visual C++ > CLR > Windows Form Application. I'm trying to use some of the functions in Windows.h, so I added the #include "Windows.h" at the top of my .cpp file. The code I added to my .cpp file was UINT t = midiInGetNumDevs(); It seems to compile successfully, but I get the following errors when I build: Error 1 error LNK2028: unresolve ...Show All
Windows Forms detecting OS events
Hi guys, I want to write a program calculate the time that various exe programs are used in a computer. For example is a user opens MSWord then my program should be automatically started. And it should also get a notification when the user clos ...Show All
Visual C++ MessageBox memory leak/corruption problem
I have a main thread that displays a message box using CDialog's MessageBox function. And there's another thread that exits the application. Termination of the MessageBox (without the user pressing "OK") is corrupting memory or causing memory leaks. In debug mode it says "user breakpoint is reached in code .. ". Is there a simple way to close the messagebox before terminating the application so that there won't be ...Show All
Visual Studio 2008 (Pre-release) ToQueryable() - Does it cause a query execution?
From what I've been able to tell, calling ToQueryable() on the results of a "var x = (query)" operation doesn't actually invoke the execution, it simply wraps the contents of the expression tree generated for (x) inside an IQueryable<T> type. I just wanted to confirm here that calling ToQueryable() isn't going to give my query a case of the dreaded "premature query syndrome" , and that its just wrapping the deferred que ...Show All
