markmangubat's Q&A profile
Visual Studio Team System Handling viewstate in a Web Test
If you record a web test against an application that uses VIEWSTATE will it automatically handle passing the value from the previous request or do I have to add some rules / code to handle this Do you have any sample code for handling VIEWSTATE That's a great question that comes up pretty frequently. I'm going to work this answer into a blog post to widen the audience. As for sample code, the ...Show All
Visual FoxPro lan/wan difference
Hi everyone, I always browse this forum (for a long time now) I get really good info and answers to many of the situations I've encountered during my process of discovering what to do with a VFP application; since I've never work with VFP before. I've learned a lot, but there is still things that I can't figure out. The application runs fine in a LAN environment, but when is accessed in a Wan environment, there is specifically one form that ...Show All
Visual Studio Express Editions Visual Studio 2005 Express - UI Design View Error
I have installed Visual Studio 2005 Express - I love it. I am having one issue with the Design View - after I used the Design View to Edit an InsertItemTemplate (MANY Times) I get the view looking the way I want it, save the changes, and then ask a browser to load the page - - - the Dev Environment has shuffled the design view (this makes it VERY difficult for us that have limited exposure to HTML... Is there any known bug list where I c ...Show All
.NET Development Need Registry Edit permission for my Application
Hi All I’m developing a windows based application in C# v1.1. I’m doing a SetValue by opening a key from the Registry. The thing is it works fine only for the windows account having Admin privilege for the running machine. And it is failing for other windows accounts having No Admin privilege. Is there any way to pr ...Show All
Visual Studio Express Editions Setting non-CLR based projects as default
Hello folks, in Visual C++ Express 2005 Express Beta 2 resp. August CTP, is there a way to create a Windows Forms application without the use of the CLR by default I'd like to build a 100% native C++ program using the Forms designer but I'm not quite sure if this is possible at all. At the moment I'd like to use the templates not only because of the convenience they offer but also to learn this IDE step by step ...Show All
Visual Studio Express Editions Reporting in VB.NET Express
OK, there's been a few questions about this, but none have really answered this question. A control you can add to the tool bar is a "Report Viewer". One of the links when this control is placed on a form is a link to "Design a New Report". This link doesn't work. So my questions are: Will it only work in the full version If I create a report in Crystal Reports (either from an earlier, full version of VS.NET or the free 30-da ...Show All
Visual C# ClickOnce
For my application I use an access database and ClickOnce for installation. When I run the application after installing everything works just fine. however, if I change something and run setup to update to the latest build the changes to the access file are gone. I figured this was because ClickOnce will install updates to new directories so I decided to move the access database to an outside directory. I figured ClickOnce would not be able to t ...Show All
Visual C++ Problem solved
I am using Visual Studio 2005. I get error messages when I build a native Win32 app in Visual C++ .Net 2005 The first error is d:\program files\microsoft visual studio 8\vc\platformsdk\include\winnt.h(222) : error C2146: syntax error : missing ';' before identifier 'PVOID64' This is the line: typedef void * POINTER_64 PVOID64; How can there be an ...Show All
Visual Studio Express Editions Blue Screen
I have just installed the Visual C# 2005 Express Edition, and as i started to use it, all of a sudden i would get a memory error BLUE SCREEN, and my computer would restart. These errors will occure for no aparent reason. I do not know why, if anyone can help, i would be very grateful! Thank you for your time. ALL FIXED. I read in another forum that someone else was having the same pr ...Show All
Windows Forms Is it possible to create a desktop icon using ClickOnce
I found only one article about creating desktop icons, but that article (MSDN) ruled out creating desktop icons. Is this possible with ClickOnce or not I know windows installer will, but we have a Smart Client and want to provide a way to create a shortcut to the app on the desktop so people could get to it quickly. Any suggestions Thanks In regards to auto-starting a ClickOnce app, I hav ...Show All
.NET Development Disable Default Functions
Hi Is it possible to disable default action of IE when pressing Functions Keys I want to implement my own functions in my web application when a function key is pressed. I am able to do that, but the problem is , the default action is also executed along with it. For example when pressing F5, as soon as my function gets executed, the page gets refreshed. so, is it possible for me to disable default actions of IE Thanking You ...Show All
Visual Basic SQL Statement - INSERT INTO (Syntex Error)
Hi, can someone please help me, for some reason does this INSERT INTO statement not work. I'm using Access2003, and each time I try to run this query through by wondow, I get a "Syntex Error in INSERT INTO statement". My 'adddate' column has a DataTime datatime. Here's the code: "INSERT INTO labour (cat, adddate , labours, hours, normrate, subtotal, ,jobnum, otimerate, dtimerate, othours, dthours) VALUES (" ...Show All
Software Development for Windows Vista Feb CTP - Can't get Workflow packages to appear in Visual Studio
Hello. I've installed the February CTP on my notebook a few days ago. Everything works fine except that the Windows Workflow Packages don't appear in the New Project window. So I can't create any WF project. I can't figure out why this is happening. WCF, for example, works fine (I have the "WinFx Service Library" template available). I installed VS 2005 Extensions for WF Beta 2 also, so the corresponding templates should appea ...Show All
Windows Forms Textbox and margin
Hello Why, when I change the margin in VS2005, the height of the text box doesn't change. And I can't change it (it comes back to the original value)... How can I increase the height of my textbox Thank's With these controls.... only can set the font's size. You can create a class that inherits from a TexBox and use the SetStyle method to allow the resize or other features. Search for more details in the MSDN online documentatio ...Show All
Visual Studio Team System Namespace name
How do I get the whole name of the namespace for the class I'm checking How do I know if the method is void To get the namespace, use: string namespace = member.DeclaringNamespace.FullName; To determine if a method returns void, use: if (method.ReturnType == SystemTypes.Void) { } Regards David ...Show All
