MSNBuger's Q&A profile
Windows Forms DataGridTableStyle
I am writing an application that I needed to hide 3 columns in a datagrid. I used this code: (I am using VS 2005 compact framework). DataGridTableStyle tableStyle = new DataGridTableStyle (); tableStyle.MappingName = "Component" ; DataGridTextBoxColumn tbc; tbc = new DataGridTextBoxColumn (); tbc.MappingName = "ComponentAcre" ; tbc.HeaderText = "Acre" ; tbc.Width = 0; tableStyle.GridColumnStyles.Add(tbc); tbc = new Data ...Show All
Visual FoxPro Use ADIR to get specific files from a folder
Chdir (SOURCE_FILE_DIR) numfiles= Adir (filearry) I know you get files that have a specific extension like this: Adir( filearry , '*.TXT') BUT can you use a negative condition with Adir Example: get files from a folder where the extension is not .txt or .dat Before I made the post I was thinking along the same lines as Craig B about removing items from the array. What I ended up doing: Loop through the ...Show All
SQL Server SQL Sever Express CTP June 2005
Hello. I installed SQL Sever Express CTP June 2005 along w/ MS Visual Web Developer express beta2 in July '05. Because my office has Visual Studio .Net Enterprise 2003 and SQL Server 2000, our network administrator recommended that i remove the Express editions, and install the Visual Studio .Net 2003 Enterprise Edition. When i did the uninstall process, i successfully removed VWD express, but SQL CTP june 2005 is still un my system, even though ...Show All
Smart Device Development eVC Upgrade Wizard available for VS 2005 Beta 2!
The eVC Upgrade Wizard (which will upgrade eVC3 and eVC4 projects to VS 2005) is available as an addon for VS 2005 Beta 2. The Upgrade Wizard will be integrated into the final release of VS 2005. The addon can be downloaded at http://www.microsoft.com/downloads/details.aspx FamilyID=77ffddbf-b215-4d96-94dd-6ae9b7bb53d2&displaylang=en ...Show All
Visual Studio Express Editions Visual Studio Common IDE Package Failed to load
Hello, I just installed the new Visual Web Developer 2005 Express Edition Beta 2 and I get this error everytime I open up the application: The Visual Studio Common IDE Package ({6E87CFAD-6C05-4ADF-9CD7-3B7943875B7C}) did not load because of previous errors. For assistance, contact the package vendor. To attempt to load this package again, type 'VWDExpress /resetskippkgs' at the command prompt. I did try to do as it had stated to, but no ...Show All
Visual C++ Old iostream linking problem in VS 2005
I am migrating a VS add-in written in C++ from 2003 to 2005. So I must get it building in '05. One lib in the solution uses the old style iostream.h. The VS 6.0 libcimtd.lib is specifically included and linked with that piece. That piece successfully builds the lib. When other piece (a dll) is linked with that first piece I get many LNK2005 errors unless I specifically ignore LIBCMTD also. (didn't have to i ...Show All
Visual Studio Express Editions I have a problem when i load my files in c# express edition
ok this is going to be hard to explain especially for me im new so im gonna try my best. ok after i have wroked on a project in microsoft c# express edition i save my work now here is my problem the next time i go to load my file everything seems blank. the properties window is there and it will have everything in it but lets say i go to bring up the designer window instead of the window it is just code. im wondering if there is a certain way ...Show All
Visual Studio Express Editions C++ .net express.. Now what?
First of all.. Thanks to anyone who is willing to toss me a few seconds of their time and help to give me a bit of direction.. I am on a quest to learn the C++ language and write applications.. I have been cruzing web sites and book stores picking up every bit of info I can. I am trying to see a clear way into this massive forest of abbreviated technicalities. .Net ASP, SQL, CRT, ALT, SCL, MFC and on and on and on. Behind each ch ...Show All
Visual Basic VB IDE 2003: Setup Project Stops compiling with Message "Error: The operation could not be completed"
I am using Visual Studio .Net 2003 IDE. I have build an application in VB.Net and am creating a setup project for this. After adding all the files and output of the VB project, I tried compiling the project. The setup project doesn't compile. The message in the output window is: Performing main compilation... Building satellite assemblies... Error: The operation could not be completed Does anyone have any idea about this i ...Show All
Visual C++ Program terminates without finishing code
hi... what is happening when a program terminates (no error messages) without executing the rest of the code my code is attached below. The while loop does not iterate and after one iteration, my program exits. I don't know what is wrong and how I can debug... Thanks for any help. #include <stdio.h> #include <speex/speex.h> #define FIXED_POINT #define MaxFrameSize 500 #define MaxFrameBytes 500 int main (int argc, char ** argv) { &nbs ...Show All
Visual Studio Team System Recursive diffs
Am I missing something It seems to me that recursive diffs of a tree take an inordinantly long time. I am trying to get TFS into our shop as it seems to have a great feature set for the price point, but there are a lot of people pushing for subversion and CVS here. Here is an excerpt from a developers complaint about TFS. ... Recursive diff operations from the command line are very slow. A recursive diff on a directory tree of 60 directori ...Show All
Visual Studio Signing Assemblies with InternalsVisibleTo
I have a number of assemblies that use the InternalsVisibleTo attribute. For example: MyProject\AssemblyInfo.cs [assembly: InternalsVisibleTo("MyServices")] When I try to sign the MyProject assembly, I get an error: error CS1726: Friend assembly reference MyServices' is invalid. Strong-name signed assemblies must specify a public key token in their InternalsVisibleTo declarations." So, ...Show All
.NET Development J# doesn't support 64 bit?
I'm getting my first 64-bit machine next week, so I thought I'd better start getting up to speed about 64 bit. I have a solution that has C# applications (WinForms and class libraries), as well as some J# class libraries. As long as the solution only contains C# projects, the platform configuration manager (that dropdown in the toolbar) says "All CPU", meaning it will generate platform-agnostic MSIL. But as soon as you add a J# project, it ...Show All
SQL Server Open empty environment
What happened to the Query Designer It's a modal window that doesn't allow you to drag tables from other databases into the query. SQL 2000's verion of Query Designer was so much better than 2005. What happened Are the developers at Microsoft completely retarded Also, why do I have to log into my database servers everytime I open "Server Management Studio" Who thought up that nice feature Probabl ...Show All
Windows Forms Update DataGrid
hi, i hope i am in the right place to ask question. i using VB.net n SQL and my question is: i able to fill my datagrid with my table.. but it seems i got trouble updating a new entry, or when i want to delete a entry; becau ...Show All
