FunkyVB's Q&A profile
Windows Forms Terrarium 1.2 not showing any text on buttons?
I just installed Terrarium 1.2 and noticed there is no text on the buttons. Is this a known problem Is it because I've ClearType enabled --Dion Hi guys, Don't click on the link as you will get the JIT Debugging dialog with the exception occurred message. Select and right-click the link instead and choose 'save target as' and follow the a ...Show All
Visual C++ Making an Enum a Public Assembly member
I have an assembly, Shared, that contains an enum named MyEnum. I want to be able to define this enum once in the Shared assembly and then use it in other assemblies by referencing the Shared assembly. Is this possible I thought enums where managed types but I used the following code with no luck because it said that "an assembly access specifier can only be applied to a managed type" so I have to remove the public keyword. namespace Shared { public enum MyEnum { eEnumValue }; } and then I reference it in another assembly: #using "Shared.dll" namespac ...Show All
Visual Studio Express Editions Amazon Movie Collection Starter Kit
I downloaded the Amazon-enabled Movie Collection Started kit but I've been unable to install it. When I run the VSI to install the template I get the message: "Installation aborted because the item was a duplicate of an item already installed." The "standard" MovieCollection template is installed by default and I didn't see a way to uninstall it. Any thoughts Thanks. Hi Derrick, Thanks for reporting this. There is actually an easy way to uninstall the existing MovieCollection template. If you navigate to the following directory, you can delete (or otherwise remove) the existing zip file ...Show All
Visual C++ How can I include multiple configurations of a single project as a dependency?
New to this whole Visual Studio thing. Unix world is most of my background, so sorry if this is a simple question. We have a solution which builds a number of libraries and .exe's. Our product is a combination of the libraries for different configurations - i.e. liba 32 and 64 bit, libb 32 and 64, etc. We have the projects all setup to build w/ the different configurations. And I can use 'batch build' to select which projects from a long list. But I'd like to be able to say a solution build is building the solution for more than one selected configuration - all platforms, or all configurations. (or both I guess...) I know there' ...Show All
.NET Development Closing a open file after running out of space on a disk.
I am running into a problem while trying to handle an out of space on the disk exception. Whenever I get an exception that there is "Not enough space on the disk" (really is a System.IO.Exception with the message just given), I try to close the file, delete it, and then continue my error handling. I am using the System.IO.FileStream class to do the writing. The problem is that when I try to close the file, I get another "Not enough space on the disk" System.IO.Exception. I believe it is because the class is trying to flush the stream before closing. I have tried closing the underlying stream, but get the sa ...Show All
Visual C++ Linker Error
There's an error in my project (Actually it's on Borland C++ 6.0 because de visual C++ 2005, didn't recognize library "windows.h". So please, if somebody knows the reason help me.Here is the code (just an experience): #include <windows.h> #include <psapi.h> #include <iostream> using std::iostream; int main(int argc, char* argv[]) { DWORD* id; DWORD* returned; DWORD size; bool temp; EnumProcesses(id,size,returned); int a= *returned/sizeof(DWORD); std::cout<<"There are "<<a<<" processes on system"; system("pause"); return 0; } [Link ...Show All
Visual Studio Debug Stored Procedures in Visual Studio Database project
When I create a database project and try to debug a stored procedure it does not step into and stop at an identified breakpoint. Any hints, comments, suggestions would be appreciated. J, Could you include contents of the ouput window (database + debug panes) and the eventlog when you try and step into a stored procedure Include edition & version info of VS 2005 and SQL Server that you have. Azeem. Visual Studio Debugger. ...Show All
Visual Studio Team System SETUP GUIDE
here are some interesting things that I successfully tried: 1) Install WSS in Web-Farm mode and use setup the WSS dbs on the SQL 2005 server after it has been installed. this way, you don't need the MSDE 2000 installation 2) a windows 2000 domain is sufficient! no need for a win2k3 native domain 3) before installing any TFS components, make sure that WSS and /ReportServer/reportservice.asmx and /reports/ are working (not showing any errors). At least the ASMX file will, by default, show errors, do refer to point 4 below. 4) You will have to fix ReportServer\web.config and ReportManager\web.config (see http://forums.microsoft.com/msdn/S ...Show All
Visual Studio Team System VSS Converter error
I've installed Visual Studio 2005 Team Suite and tried to migrate a VSS database to TFS but get message that VSS 2005 is not installed. I thought VSS was supposed to come with Team Suite If I recall correctly, the VSTS sku includes VSS, but it is not part of the default install package. If you do custom install and include VSS (or do a full install), that should do the trick (you can also run change/remove on VSTS from Add/Remove programs, and add VSS). If you try that and still get this error, reply back and we'll investigate further. ...Show All
SQL Server More Chart Palettes?
is there a way to expand the out of box Chart Palettes It is very limited Check the following blog article with a sample: http://blogs.msdn.com/bwelcker/archive/2005/05/20/420349.aspx -- Robert ...Show All
Game Technologies: DirectX, XNA, XACT, etc. vc++ 2005 express want to build dxsdk sample usp10.h missing
Hi, its me another time So I installed vc++ 2005 express and did set up the include/lib file directories for the sdk and tried to build a sample of the newest dxsdk (december 2005). But now I get the message Compiling... dxstdafx.cpp c:\programmieren\dxsamples\configsystem\common\dxutgui.h(12) : fatal error C1083: Cannot open include file: 'usp10.h': No such file or directory Build log was saved at "file://c:\programmieren\dxsamples\ConfigSystem\Debug\BuildLog.htm" ConfigSystem - 1 error(s), 0 warning(s) I did not even try to change the settings because there simply is no usp10.h file in the sdk dir ...Show All
SQL Server deleteing columns from a saved fixed width file connection object
How do I delete columns in a fixed width column file connection object, after I've saved it I can't remove columns anymore You'll need to reset your columns. See this thread for details ... http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=434333&SiteID=1 Donald ...Show All
Visual Studio ERROR: setup project - crystal report - c# - HELP ME
I build a project setup in c# (vs2003): main.exe report.rpt crystal_managed2003.msm (auto) when install it in another computer, that ok! but when I show report in application main.exe it take error: missing keycodev2.dll thanks! Have a look at the following page: http://support.businessobjects.com/library/kbase/articles/c2010681.asp ...Show All
SQL Server Partition data file disappeared!?!
We are running AS 2000 (latest and greatest) on an 8 processor, 16 GB RAM, 64 Bit Itanium server. We were processing some partitions in parallel when we received the following error while processing (using the DSO library): File error [during the Open operation] 'Projection_3fact.data The system cannot find the file specified. ' It seems the .data file for one of our partitions just disappeared. Any ideas how this could happen Here is the relevant section of the processing log... ****************************************************** 10/7/2005 1:11:06 AM 19647 Writing aggre ...Show All
Windows Forms Form.Show() hang in Visual Studio 2005 C# Beta 2 May CTP version
Hi: I am using Visual C# 2005 May Beta 2 version and encounter the following problem: 1) Create a windows Form obj and add some buttons to it using the Form designer. 2) Display the modeless form : Form1 aForm= New Form1(); aForm.Show(); After I run it in Debuger. The form just hung with a hourlyglass icon in the client area and no form item come out. 3) It works with the model ShowDialog() method aForm.ShowDialog(). Anyone can easily repeat this. I can NOT believe this is a bug !!! Please help !!! Where abouts do you perform the Form1 aForm= New Form1(); aForm.Show(); call Is ...Show All
