Solomonsd21's Q&A profile
Smart Device Development Pocket Pc beta2
hi , can i create application with c++ in beta2 for pocket pc. thanks Not sure my first post was successful, so will try it again. I've installed 2005 Beta 2 and both Windows Mobile 5 SDK's. However, when creating a new C++ "Smart Devices" project, the only two platforms that show up are SmartPhone 2003 and Pocket PC 2003. Why aren't the WM5 SDK's showing up Also, can PPC 2000 and 2002 be added Thanks, Kevin ...Show All
Visual Basic Where to Post Visual Basic 6 questions
Hi, Questions regarding Visual Basic 6 and other COM based languages should be posted on Microsoft Newsgroups . This forum only entertains VB 8 or VB .Net related questions. cheers, Paul June A. Domag Zulfiqar Ali wrote: Dear Joe, Thank you for this important update. I want to ask about VB6 OK, I am doing so through Newsgroups. Please can these news groups be configured on Outlook Expressed FYI for anyone ...Show All
Visual Basic DirectX Samples complaining
A few days ago I've installed the directx9.0b sdk. I looked through the vb tutorials, and the first 4 seemed to work well. But the rest didn't work, the compiler complained alot about the directx library not containing stuff. Any idea what's going on here I hope I get some answers quickly, Michel EDIT Sorry, the tutorials work, but all the Samples don't. I would hazard a good guess that 1. You ha ...Show All
Visual C++ dllexport and function templates specializations
Let's say I have the following template function: Template <typename T> void Fun(T t); I'd like to be able to implement some specializations of Fun in a first DLL (DLL_1), some other specializations in a second (DLL_2), and still some other in a third (DLL_3), but DLL_2 and DLL_3 may make use of specializations implemented in DLL_1. So in DLL_2, Fun<T> may be both imported and exported, depending on T. I somehow managed ...Show All
.NET Development Sockets or Remoting for internet communication?
I need your advice on which thechnology to use. I'm building a chess game as a windows forms app, where users will conect to the internet and play with each other. I'm between using Sockets ans especially nSoftware's IpWorks v6 for .Net ore remoting. The client will exchange data very frequently with the server and a bidirectional channel is a must (i think). A connection between the client and server must be open during the game. Wh ...Show All
Windows Forms TreeView XP style
I have managed to get XP Styles in my app (its taken a long time to figure it out) but now the treeview doesn't seem to look right. It starts off with a Win98 style scroll bar and once I resize it the scroll bar turns ...Show All
SQL Server Default Values not being transfered (repost)
Is this a BUG, Design feature, or somthing hidden in the bowels that I'm missing. Why does SQL 2005 Transfer Task NOT transfer the default values for columns on tables I have a dts package in SQL 2000 that Transfers tables from one db to another and it correctly transfers the default values. I create a Transfer Task package in SQL 2005 (SSIS) and I can not get the default values to transfer from my SQL 2000 tables. Why Please tell me it can b ...Show All
.NET Development Connectionstring
I have a big project in my VS2005. It has several projects including a DataLogic. This datalogic contains a single dataset. Everything is running very smoothly on my local 2005 database. Now when i publish the complete webapplication to our live server, the connectionstring is compiled wrong into the DLL. I can not believe that i have to recompile the compleet application with the correct connectionstring every time i want to publish th ...Show All
SQL Server Transfering and verifying data using temp tables
Hi, I need to write code that uses temp tables to check data and transfer it to another table. As I understand, data has to be transfered to temp table, and then a loop will check each row for data integrity and move the valid rows into a new table. The code looks something like this. The problem is with this code, the destination table (table 3) contains only one record instead of 375. What am I doing wrong Select CustomerID, StaffID, Sequen ...Show All
SQL Server DataSet and Insert method
hi, i created a query to insert a row in DataSet in Visual Studio 2005. i gave the method name to the query i created. as i understood it returns '1' if successful or '0' if not. is it possible to get the ID or the row instead Hi, are you using a SQL 2k5 There is a new ouput clause in the syntax, where you can get values back. Look in the BOL for more information about that, or raise a hand if you need further assistance. HTH, Jens ...Show All
SQL Server Stuck between "Failed to generate user instance" and "An attempt to attach...failed"
I wrote an application using Visual Studio 2005 beta 2 which uses a SQL Express .mdf file, included in the project, for the database. After installing Visual Studio 2005 RC and the SQL Express that comes with it (I followed all of the uninstall instructions first) I can no longer add a SQL Express database to any of my projects, nor can I open the SQL Express database in my original project. When I try either of these tasks, I get th ...Show All
Visual Studio Error : Value cannot be null ,Parameter name:Key
Hi, Follwoing is the error which is coming randomly on running the application .. Error : Value cannot be null ,Parameter name:Key The project is running properly on one machine but when copied to new machine and later run from new location above error is coming. This error comes very randomly for intial run the application is running properly but after some time this error comes up. We tried changing " ...Show All
Visual C++ Is partial redistribution of VS 2005 DLLs allowed?
We're looking at migrating our applications from Visual C++ 6 to Visual Studio 2005. We link in the MFC and the C-runtime DLLs. Since users download our application over the Internet, we need to minimize the download size as much as possible. We would need to redistribute the VS 2005 DLLs as applocal. Does the license agreement for redistribution require that the entire contents of the Microsoft.VC80.CRT and Microsoft.VC80.MFC ...Show All
Visual Studio Team System "Error 32000. Failed to execute command."
I'm getting a 32000 error installing tfs application server. The error message says " Error 32000. Failed to execute command ." I'm doing the dual server setup. I have all the requirements for the install on the server. Any clue Thanks for the info. It seems that we need the lines before this. You should get like a "CustomActionData" with a long line of the command that was being executed. Can you do a search u ...Show All
Visual C++ Allocate memory in Heap or in Stack [C++]
here is some C++ codes, { ClassA a; // allocate memory in stack for a ClassA *pa; // allocate memory in stack for pointer pa ClassB *pb = new ClassB(); //ClassB object in heap and pointer pb in stack pa = &a; } what I want to know is that my comments after every line is wrong or right If wrong, why Thank you , any help will be apprecia ...Show All
