SSTXX's Q&A profile
.NET Development AppDomain.Unload memory leak problem.
The following lines of code attempts to load an assembly into the newly created AppDomain and will be unloaded after some processing has been done on it. The problem with this is it leaks memory, as soon as I have loaded several assemblies during the lifetime of the application. This is fustrating, I followed the advise to load the assembly into an Application Domain so that it can be freed afterwards with AppDomain.Unload method. However, the m ...Show All
Game Technologies: DirectX, XNA, XACT, etc. 2d GUI questions
Hey all, Big post here, I'm in the process of creating a 2d gui in managed directx with c#, and I've run into some serious performance issues after a rather minimal interface with a few high res textures. Along the way I've wondered if I'm doing things right. I've also been really curious as to how a program like Picasa2 can do all of its rendering at lightning speeds, with pretty much zero load time no matter how big the images get, while it's ...Show All
Smart Device Development HardwareButton problem
Hello, I'm having a problem in a Dell Axim X51V with WM5.0. HardwareButton component in VS2005 (Compact. Net Framework) only manages first 20 keypressing. Any application written in VS2005 wich includes hardwarecomponent, has this problem. After 20 key pressing on any hardwarebutton (hardwarekey 1-6), all new press on this keys are ignored. Can anyone helpme please Thanks in advance T ...Show All
SQL Server Where to Place rs:Parameters=false For Drilldown Report?
I have a report that contains a "Jump To Report" navigation cell. I don't want to show the parameter panel on the drilldown report. Where do I place rs:Parameters=false in the designer After the report name in in the "Jump to report" textbox Or in the Parameters dialog If so, how KKaps wrote: This will also mean that every time you redeploy the report, you will have to clear out ...Show All
Visual Basic disable pop-up
hello how i can disable pop-up window like "msgbox". i want that a window can not create "msgbox" thanks DMan1 wrote: nima_API, All messageboxes, dialog, and forms are controled by the programmer in .NET. If you do not want the user to be able to display a messagebox then you as the programmer should not create an instance of the mesagebox, dialog, or form. You really should listen to DMan1. This is common sense ...Show All
Visual Studio Express Editions How to get an activation key
This is the message I am getting from the beginning when I try to register my Visual C# 2005 Express Edition Beta. "Our records indicate that you have exceeded your limit of verification e-mail messages. Check your Inbox to confirm that an e-mail message has already been sent. If you are unable to locate a verification e-mail message, please visit Contact Us to request assistance." However, I have never received a verification message. A visit ...Show All
Windows Forms Checkbox inside of a DataGridViewRowHeaderCell
Hello everyone! I am wondering, is it possible to put a checkbox inside of a DataGridViewRowHeaderCell The user would like to be able to select rows by clicking on a checkbox inside of a row header. Note, I am aware that I could add a checkbox column, but they want it in the row header instead. I appreciate your help! Justin The DataGridView does not have any support for controls (real or fake) ...Show All
Software Development for Windows Vista Single TV Tuner, Multiple TV Channel recordings.
Hi, I am new to DirectShow Programming and am using DirectShowNet to create a managed application that captures video+sound and stores it to a file. Pretty simple. I was playing around with the software that came with the tuner and it supports Picutre in Picture. It triggered curiosity and it lead me to the following question. Is it possible with only 1 TV capture card to record more than one TV channel simultaneously If so I would be great ...Show All
Visual Basic classfactory cannot supply requested class
Operating System Version: Windows XP Home Problem Application Name & Version: Visual Basic .Net 2003 Error Messages: "ClassFactory cannot supply requested class" i have installed everything with no error and when i went to start a new project, i get the above error...i uninstalled and reinstalled multiple times and even used different setup discs and still get the same error...please help! I got simila ...Show All
Windows Forms right click event ??
Is there any way to capture right click mouse event Yes. On MouseDown Event you have access to a MouseEventArgsm that allows you to get the type of the mouse button that was clicked. the code should be: private void myControl_MouseDown( object sender, System.Windows.Forms.MouseEventArgs e) { if (e.Button == MouseButtons.Right && e.Clicks == 1) { ...Show All
Game Technologies: DirectX, XNA, XACT, etc. ID3DXFont (DX 9.0c) square problems
ok, this is a really annoying problem whenever i try to print text to the screen using the ID3DXFont::DrawText function, only squares appear the thing is, i am using Arial font, so i don't think it can be that the computer doesn't know the font sometimes however, a letter will appear somewhere in the line of text, but always in the wrong spot it is always the last letter of the line though i really really need some help here ev ...Show All
SQL Server security context could not be retrieved
some time back i had problem with sending the service broker messages on remote machine, I had some security issues and they were resolved by the help of Remusu. since the ip of the remote machine was changed in between so i just re-executed the same scrips which used to successfully send messages on the remote machine.(I just updated the IP in the route ) To my surprise same script did not work now where as no change have been made. ...Show All
Software Development for Windows Vista Changes to an already running .xoml
I would like to know if its possible to change an already running .xoml and make the changes effective in the running workflow without having to restart the host Thanks I believe you'll want to look at dynamic update. There are samples in the SDK and a lab in the WF HOL. This will change the currently running workflow, but not any started after this or other instances that are running. You'll n ...Show All
Visual FoxPro connecting to foxpro table from asp or php
I am having a problem and I can't seem to find any info on the internets to help me. I'm trying to connect to a VFP free table that is on a separate machine on the network. I want to do it inside of either PHP or ASP.NET. Doesn't matter which at this point. I seem to be able to establish a connection with the table, but I get an error when I execute the query. Example php code: < php include('adodb.inc.php'); in ...Show All
Visual Studio Help still broken
Just installed the release version of VS2005 standard. Alas, F1 help is still broken. If I position the cursor over a word (for example HANDLE) and hit F1, the following happens: 1. If MSDN is set to use local help only, it always displays the topic-not-found page, even though on the left hand side, the topic is not only present, but selected. A single click on the highlighted item displays the correct information. 2. If MSDN is set to use onlin ...Show All
