walker4bc's Q&A profile
SQL Server Very newbie question
Hello, I am a newbie programmer, and an even bigger newbie to the world of SQL/SQL CE. I was programming a Pocket PC program using an XML database, but that didn't fufill all my requirements/needs. So, that's how I got to SQL. I would appreciate infos and input on the following question(s): I am using SQL Server 2000, Visual Studio 2003, and the SQL CE 2.0. I have created an SQL database out of an existing mdb file, and would now ...Show All
Visual C++ Visual C++ express beta 2: can't link std::runtime_error
This simple example won't link - unresolved external symbols for std::runtime_error (build log follows example). Command line for build: /Od /I "C:\Program Files\Microsoft Platform SDK\Include" /I "C:\Program Files\Microsoft Platform SDK\Include\atl" /I "C:\Program Files\Microsoft Platform SDK\Include\crt" /I "C:\Program Files\Microsoft Platform SDK\Include\gl" /I "C:\Program Files\Microsoft Platform SDK\Include\mfc" /D "_MBCS" /Gm /EHsc /RTC1 ...Show All
SQL Server using package variables as parameters in Execute Sql Task
Hi, I need to run an SQL command, in which one of the fields is based on the current time, represented as a string in a specific format. I used a script task to create the string from the current time, and store it in a package variable named "newDate". Later, in the execute sql task, I have the following update statement: "update table_1 set field_1 = " (OLE DB connection is used) and in the parameters mapping I set ...Show All
Windows Forms Using Settings to store complex types
I have successfully navigated the learning curve on using Settings to persist control states and simple data values across program invocations. I would also like to persist a small table (a DataGridView). I tried the straightforward approach of specifying a DataGridView type in the Settings tab of the solution Properties, then I ran the program to enter a few values, exited, and restarted, but my entered values did not reappear. Here are the rel ...Show All
Visual Basic 2005 .Net Nightmare
As a visB programmer who has been happily coding very successful applications for many years, I have been shocked at the verbose incomprehensibility of the .net framework. Where is the wonderful Basic language that has served so well for so long Is there a way to disable all the garbage in VisB 2005 in order to just write simple single thread applications in the Visual Basic language I have been unable to get even the simplest microsoft SDK exa ...Show All
Visual Studio Team System Sharepoint Portal Server is not compatible with Visual Studio Team Foundation
Hi All When I'm trying to install Beat 2 VS 2005 Team foundation getting this error. I have installed Sharepoint portal server 2003 and Sharepoint portal windows service with service pack 1. Also I have installed sharepoint language pack also. But still Im getting this error. Anyone could you plz help me Thanks in Advance. Regards, Raghu For this BETA2 release of the Visual Studio Team Foundation the installation must be prefromed specifi ...Show All
.NET Development Any tips for a transition from Access and DAO?
We right now have a reasonably large commercial application that's written in C++ and we're currently working in Visual Studio .NET 2003, which actually offered us a smooth transition from Visual Studio 6. The application is working against an Access database with DAO, so we get warnings about DAO functions being deprecated when compiling our solution. Looking ahead, we may start using Visual Studio .NET 2005. This raises my first question: Will ...Show All
Visual Studio Team System Custom Test Configuration Properties
I have a set of unit tests that I would like to include in a set of nightly test runs as part of a build environment. I want the entire set of tests to be included in each test run, each with a slightly different environment context (in this case, different user credentials and proprietary configuration files). Is there a way to pass in custom values from the build environment to the test environment, either through the MSTest.exe ...Show All
Windows Forms initial timer event throws error when trying to rebind datagrid
I'm using a System.Timers.Timer to refresh a view in a datagrid On the first refresh I ALWAYS get this error Column 'firstName' does not belong to table responses. I'm just assigning a DataTable to the datasource of the datagrid. details 1) I have a refresh button who's click event runs the EXACT SAME code as the Elapsed event on the timer. The refresh button NEVER throws this error 2) After the first refresh this error no longer ...Show All
SQL Server function to display the numbers 1-12 in detail of table
I have a table and in the table detail section it will never have more than 12 rows;therefore, I want to have the numbers 1-12 listed sequentially on each row. For instance: Row Data 1 record1 2 record2 3 record3 .............................through 12. Any help i ...Show All
Visual C# CodeDomProvider.CreateCompiler - need a replacement.
I am posting it second time today. For some strange reason the first post disappered after an hour or so. It is about the method: CodeDomProvider.CreateCompiler(). The method appears to be obsolete but it is used in a code sample I have copied from MSDN. There should be a replacement for this method. I would like to know what it is. Thanks. Yeah, thanks again! I think a lot of the confusion is because the error message generated by trying t ...Show All
Windows Forms generate thumbnail from a non-image document file?
I want a pciturebox to display a thumbnail from a file (e.g. a word document, powerpoint document, html, text, openoffice file). WindowsXP seems to have this built in (thumbnail view). How can I expose this functionality inside my application An idea I& ...Show All
SQL Server Using Row Count
Pardon my ignorance, but does someone have a step by step guid to include row count transformation in a package. What I want to do is to count the number of rows extracted from the source and the number of source inserted to the target. I have tried to include a row count transformation with a variable defined. But the variable keeps showing 0 after each run The issue you may be encountering is when did y ...Show All
Windows Forms Combobox event usercontrol
Hello, I am sure y'all have answered this before, but I am having a rough time finding the answer. I will blame my cold instead of my laziness. I have created a user control to hold a bunch of panels. I created a collection class to hold the panels and that works great. Now I am trying to add a combobox on the UC so that at design time It list all the panels that I have added and be able to navigate between panels using the combobox selected ...Show All
Visual C# How to run C Application in .NET environment?
How to run C Application in .NET environment Please help me out.. A C application will run natively on the OS. Unfortunately there is no Managed C compiler. There is a C++/CLI complier using which you can target your C++ aplications to run on the .NET Runtime. So look at the C++/CLI compilers to see if you could port your C application. REgards, Saurabh Nandu www.MasterCSharp.com ...Show All
