John Portnov's Q&A profile
Visual C++ Directories of 64-bit targets created from 32-bit ones
Hi, The VS 2005 feature for adding 64-bit targets by coping win32 ones is pretty neat: http://msdn2.microsoft.com/en-us/library/9yb4317s(en-us,vs.80).aspx I've noticed though, that when doing this with projects converted from VC++ 6, in some places the new target uses the same build directory as the target copied, so that, for example the amd64 and the win32 versions can't be built at the same time. I've put an example below. The x64 part doe ...Show All
Windows Forms Save File Dialog
My question is di I have to place menu on the Child Form for saving from RichTextBox or it can work by placing the code on the MDI Form and here what I am tying to use but it did save the file but it was empty. private void saveAsToolStripMenuItem_Click( object sender, EventArgs e) { saveFileDialog1.Title = "Specify Destination Filename" ; saveFileDialog1.Filter = "Text Files|*.txt" ; saveFileDialog ...Show All
Software Development for Windows Vista Few Questions
To IT Professionals. I have a few questions. So please if u have enough time to answer me I'll be very grateful. 1- Why does Microsoft do all these impressing user interfaces while they just can improve the XP`s user interface to fit the in Vista like what the did in Windows 98 and ME 2- Did Microsoft have problems in dealing with Vista developing phase when it was "Longhorn" and why did the name changed &nbs ...Show All
Windows Forms excel type data grid
I've been tasked with writing a basic time tracker program for our department. I've created 2 tables in my database. One is employeeprojects and the other is timeentries. So, an employee sets up whatever projects they work on and then s ...Show All
Visual Basic Module not maintaining form initialized
I am having troubles with an application I've developed on a specific server. I believe the primary problem is the server itself and have yet to see the application fail on any other server. It's running on a Windows 2000 Server, .NET Framework 1.1. We've tried reinstalling the framework 3 times with no success and I would like to see if anyone else has run into this problem. The issue is that I have created a form in a Module ...Show All
Visual C++ Communication between objects
I am using a main form created with CLR, Windows forms (Form1) with 2 child forms ( A, and B). I want to have B send A some information to act on (I need to pass it an integer). How should I do this (I posted a similar question and it was bumped to another forum, but no answers in over a week) Yep the windows forms forums might be a better place as descibed ...Show All
Visual Studio Express Editions BindingNavigator
Hay, Whit this code i try to go to a reccord whit an BindingNavigator Dim ring As String ring = InputBox( "Type een ringnummer" , "Ring nummer" ) If ring = "" Then Exit Sub Else Me .TVogelBindingNavigator.Items.Find(ring, True ) End If Is this correct or what do i wrong. I use this code in the changed event , but thanks f ...Show All
Windows Forms What is "application framework"?
I tried creating a new Windows Forms app and had a hell of time just getting it to run. The trick was turning off something called "application framework". Can anyone explain what this is Or point me to some articles about&nb ...Show All
Visual Studio 2008 (Pre-release) Knowntypes from configuration
Hi I have been trying to setup known types using the app.config file. According to the intellisense I'm not suppose to use the 'declaredtype' element, which is contrary to the winfx help. Where can I find a working sample for this Thanks Hello, I've come across a nice set of samples. One of them might be useful. Check this link: http://www.idesign.net/idesign/DesktopDefault.aspx tabindex=-1&t ...Show All
.NET Development Uninstall framework 2.0 beta
I can't uninstall framework 2.0 beta before I install Visual Web Dev 2005. The OS x64 tells me I run OS in safe mode. How can I undo the safe mode of MS XPP X64 s.t. I can install Web Dev express. Please help Hi, Hmmm. Have you tried using the automatic uninstaller To log-on in safe mode you'll have to restart the computer, and upon loading press F8, a menu would appear and select safe-mode... cheers, Paul June A. Domag ...Show All
Visual Studio 2008 (Pre-release) LINQ May Preview wont install on Vista Beta 2 x64
It seems that the May CTP preview of LINQ will not install on Vista Beta 2. Running the installer does not give any errors but when I open up VS 2005 i don't get the options to create LINQ projects. Also when trying to run the "Install C# IDE Support" script it gives an error "Cannot find one or more registry keys to install LINQ Enabled IDE support". It seems that the script is checking for some sub keys in the HKLM\Software ...Show All
Visual Studio Tools for Office publishing outlook add-in
When I publish my application everything goes fine, I put it on my harddrive/website/desktop. But when I try to run it I get this error: This application is improperly formatted PLATFORM VERSION INFO Windows : 5.1.2600.131072 (Win32NT) Common Language Runtime : 2.0.50727.42 System.Deployment.dll : 2.0.50727.42 (RTM.050727-4200) mscorwks.dll : 2.0.50727.42 (RTM.050727-4200) dfdll.dll : 2.0.50727.42 (RTM.050727-4200) dfshim.dll : 2.0 ...Show All
Visual Basic Relase the Fix for Visual Basic Compiler Error &H8013141e&
Hi all i just want to know when is going to be released the fix for visual basic compiler error &H8013141e& this is already reported in the microsoft productfeedback site. i think this is a very urgent patch that must be released asap and please do not repond that i should go back to vs.2003 because i have lots of code developed in VS 2005 to framework 2.0 .. JSB PS: this error pisses me of, i need to res ...Show All
Visual Studio Express Editions Is Visual Basic 2005 Express interpreted or compiled?
I have looked through a lot of literature, but it seems difficult to find a clear answer to this question. I can see that VB generates P-code, which is interpreted and therefore executes much slower than compiled languages, but some literature indicate that it may be possible to compile the P-code and generate a fast executing program. C is a terrible language so I am looking for a good, strong alternative, but in practice it seems that th ...Show All
Windows Forms Getting problem if showing form through asynchronously.
Hi, I m getting problem when i m opening my win form asynchronously. private delegate Form AsyncDelegate (); in button click event have below two line code and opening second form. AsyncDelegate dlgt = new AsyncDelegate(LoadForm); IAsyncResult ar = dlgt.BeginInvoke(new AsyncCallback(CallbackMethod),dlgt); private Form LoadForm( ) { Form newForm = new System.Windows.Forms.Form() ; return newForm; } ...Show All
