kalkumar's Q&A profile
Software Development for Windows Vista Looking for CleanupSharedWinFXFiles.exe
Hello Forum, I had a prerelease of WinFX on my machine and I am looking for CleanupSharedWinFXFiles.exe which shall care for cleanup of the gac. I had the reference from a MS Page http://www.microsoft.com/downloads/details.aspx FamilyId=AAE7FC63-D405-4E13-909F-E85AA9E66146&displaylang=en but the regarding Link to this file is broken. Does anybody have this file or a working link to that download Best regards Ralf BrandyR wrote: meanwhile I found a solution (or workaround) for my WinFX setup problem Brandy, can you possibly post a link directly to the specific article The link you posted is to the blog's ATOM feed. I'm having similar troubles with the new RC1 (which I also had with the July ...Show All
SQL Server Tutorial Lesson 2 - SQL Server 2005
While building the expression for the property: ConnectionString, I am facing an issue. The expression, I am trying to assign is '@[User::varFileName]'. When I clicked on the 'Evaluate Expression' button, the above expression is not returing any value in 'Evaluated Value' window. Please respond we have a solution. I am kind of lost Where are you trying to use that expression HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All
Visual Studio Tools for Office Strange behavior: RichTextBox
Hi, I am creating a .doc with VSTO2005. My document contains several Controls such as Buttons, RichTextBoxes, ComboBoxes, etc. which are generated at runtime. In some cases, I encounter the problem that a RichTextBox doesn't display the content (text) it should, but only displays a big red cross like this: \ / \ / \ When I click into the RichTextBox field (with the red cross in it), the following, weird message appears: “Windows Forms controls have been disabled because the document has been scaled. When zoom is returned to 100%, controls will reactivate.” But actually the zoom of the document hasn’t changed at all! Has anyone already encountered this problem Thanks fo ...Show All
Visual Basic Datagridview selected row problem
I everyone... I've got a problem at a datagridview row seletion. I've got a function to search ID in all datagridview rows, and when it find the correct row with my seach id, i need to select the row. At this point, no problem: For Each row As DataGridViewRow In dgvContas.Rows If row.Cells("CodigoConta").Value = CodigoConta Then 'selecciona a linha correspondente ao codigo de conta dgvContas.Rows(row.Index).Selected = True 'Altera a area de visualizacao de forma a mostrar 'a linha seleccionada &n ...Show All
Visual Studio A problem with visual 2003
Hello, I start debug on the first line of code. The program does not respond. When I try to break in the debug, I get: Unable to break execution. The process does not contain any programs Have any idea what does that mean Someone told me it might be because of some static members, initialized. But crippling the debugger like this What can it be and what should I do to discover the cause of this If I just run it in release mode without debugging then the program works. Ok, I simply closed visual and opened it again and now it debuggs just fine. What could have caused this Thanks in advance. I've run into a similar problem, here are some details. Code that at one time ran with no problem does not ...Show All
.NET Development HELP or U can Say SOS
hi every one I need to know how to use ConnectionOptions Class with an internet addresses and how to use WebClient.Credentials property with internet addresses and how to use them to provide mail server with username and password to send e-mails through windows form and download e-mails to. I'm Developing using VB .NET 2003 and please if any one knows about the idea it self please give me some advises thanxxxxx ...Show All
Visual C++ Strings
I have experience in Java and the use of strings, and wondered how to use them (if possible) in Visual c++. Is it something to do with LPSTR Could you point me to an introuductionary article or somethign please Mike I largely agree with einaros. If you come from Java, you're in for quite a shock when you start dealing with strings in C++. It is a mess. There's char*, wchar_t*, std::string, std::wstring, BSTR, OLESTR, _bstr_t, CString, System::String, strcpy_s. And some others I probably didn't think of. Like tchar.h, MBCS, Unicode, UTF8, UCS16, BigEndian, System::Text::Encoding . This happened because the basic "C" char* is deeply flawed and everybody and his grandmother came u ...Show All
.NET Development Target the Framework version and Redirect Assembly Bindings from 2.0 to 1.1
Dear all, I have encountered a problem of "DragDrop registration failed" problem in my .NET 1.1 dll because of the assembly binding is always going to .NET 2.0. (I realized the related attribute [STAThread], however, there's no Main() in my C# libraries) Therefore I tried to specifiy the runtime version and redirect those bindings in MyModule.dll.config. The binded assemblies, however, are still in .NET 2.0, according to both VS.NET 2003's output log and VS.NET 2005's fuslogvw. Meanwhile, they also logged compiling and linking processes. At that stage, linked assemblies are in version 1.1 correctly. My question is, does it means that configurations of runtime version and assembly binding redirection do not work backwa ...Show All
Visual Studio Team System Check-in problem
We noticed today a strange behaviour on check-in. On a workstation we changed a C# file, and then checked it in using the pending checkin window. We noticed we couldn't get it down on another workstation(different user), and checked the history of the file. The check in was NOT listed, but in the solution explorer the file appeared as checked in on the first workstation. We did a checkout again on the same workstation, and the file was not changed, that is - our changes was intact. We then checked it in from the Soultion Explorer window, and again checked the history - this time the check-in appeared. Is this anything known Next time it happens, you can verify whether the changeset is created ...Show All
Visual Basic Adding Windows Form Controls to ASPX
Group, would it be posible to add a windows form control into an aspx page if so, how would i be able to do that. Thanks in advance. Ros This forum is for asking questions regarding VB .NET for asp questions please see the following forum: http://forums.asp.net/ ...Show All
.NET Development How can I convert this c# code into a regular expression?
I'm trying to create a "path validation method" to check if a string can be used as a valid path in my program. The path must contain an indication character at the beginning of it which can be either minus, tilde or a dot. In case of a minus character than it must be followed by a number. In case of tilde or a dot than it must be followed by any valid step format. A valid step format is either a s tring enclosed by a sharp brackets , a number or a combination of a string enclosed by a sharp brackets followed by a number without white spaces between the brackets and the number. After the initial step we can have a dot separator to indicate that we have additional steps that must follow the normal step format without the starting indicatio ...Show All
Visual Basic How to switch to another application from mine
Hi, I want to be able to switch to another already running application when a user presses a button on a main form. I can enumerate the running processes and see that the one I want is running, I can get its Window Handle. How can I switch to it. If you know the window handle, you can use the SetActiveWindow() SetForegroundWindow method to do this. You'll need to include it from user32.dll Declare Function SetActiveWindow SetForegroundWindow Lib "user32" (ByVal hwnd As Integer) As Integer From your code SetActiveWindow SetForegroundWindow(hwnd) I haven't tested this, but I'm pretty sure it will do the trick. Regards, <Corrected> ...Show All
.NET Development The simplest way to limit webservice connections
Hello all. I have a webservice and its Windows Forms client. I want to limit connections count to webservice having this number hardcoded in server dll. This is done to limit number of WinForms clients, that connect to WebService so (n+1)th client could not connect until n workstations are already working. I do not want to limit these connections using IIS. Is there a simple way how do it Thanks in advance Are you sure you are not "counting" the local calls, right This element will restrict only remote calls.... ...Show All
Windows Forms Removing broken uninstaller/installer
How can I remove an uninstaller that is broken. I cant repair it, it gives me fatal error and a script cannot be run. I exluded the script but cant uninstall, repair or install it. How can I clean all of it out and install again If nothing else helps find msizap.exe utility from MSI SDK. It allows deleting project information from Windows Installer database. Though all files, registry settings etc... will remain you should be able to run installer again. ...Show All
Visual Studio 2008 (Pre-release) Dotted Border
Hi! Is it possible to set dotted style of Border Something like " Rectangle.StrokeDashArray" Hi there, why wouldn't you simply add a Rectangle with Background = Brushes.Transparent and set its StrokeDashArray It's a bit of the overhead, but it fits the purpose. ...Show All
