toastman's Q&A profile
Visual Studio 2008 (Pre-release) ObjectDataProvider.ConstructorParameters and Feb CTP
Hi everybody, I'm trying to use ObjectDataProvider.ConstructorParameters but it doens't appear in Visual Studio, in intellisense. Here is my code: <Window x:Class="DemosWPF.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="DemosWPF" Height="768" Width="1024" WindowStartupLocation="C ...Show All
Visual Studio Express Editions Bug or problem?
Dim song As String = tags.artist & " - " & tags.song When setting a text box to song it only appears with the tags.artist. When debugging i have found that first of all it sets the song to "tags.artist but it misses out the ending ". Is this a bug with vb and if so can it be fixed or is it something i have done wrong Probably not what you want to hear but it works fine on my machine ...Show All
Visual Studio Express Editions Extracting and installing of IMG-Files
Hello! I want to know if it is possible to extract the IMG-Files with IsoBuster and than to copy all the files on a DVD I only ask because i can extract the image files and install it from the hdd but i don't know if i can copy the files on the DVD in the folder for example VisualCSharp and install it from there. Another question: I read in the web that visual C++ don't have an IDE. You have to install the IDE separatly. Is that right or doe ...Show All
Software Development for Windows Vista ActivityCondition - should I use it or not?
hi all, Im developing a custom condition typically for an IF/Else Branch. From digging around, is the ActvityCondition the right class to inherit from I've only got an Evaluate method. Does anyone know if this is going to be clobbered in the RTM (or at least plans for) (i.e. made sealed, etc etc) Many thanks, Mick. Hi, ok, it is fine to inherit from ActivityCondition to have custom conditions. But how can I use my custom ...Show All
Visual C# webBrowser1_CanGoBackChanged event doesn't fire!?
I created a windows forms app with a browser control embedded. Actually, it is practically the code sample found in chapter 35 of this C# book, here: http://www.wrox.com/WileyCDA/WroxTitle/productCd-0764575341,descCd-download_code.html Although, the webBrowser1_CanGoBack property does change, I can't seem to trigger the CanGoBackChanged event! Nothing outlandish here: <code> private void webBrowser1_CanGoBackChanged(object sender, Eve ...Show All
Visual Studio Team System FXCop addresses Security vulnerabilities?
I'm new to FxCop. Does FXCop addresses the following list of vulnerabilities Buffer Overflow Detection Access Control Analysis Format String Issues Detection Dangerous Function/Method Calls Detection Thread Safety Race Conditions Detection Encryption and RNG Misuse Detection Input Validation Analysis Cross Site Scripting Detection SQL Injection Detection ...Show All
Windows Forms ListView Drag and Drop
Hi i have bben tryin gto do drag and drop form one listview to another . I have been able to get this far and it works fine. ListView1 MouseDown Event -------------------------- If e.Button = MouseButtons.Left Then D ...Show All
SQL Server Script generation for Objects - Management Studio
How do I generate a single script for each object - table, view, index, trigger, sp, function etc.... in SQL Server. The script that is generated from SQL Server wizards is in a single file. I want to have separate file for each of the objects. In EM, you right-click on the object, select 'all tasks', then 'Generate SQL Script'. I do not have access to Management Studio right now, so this may or may not be m ...Show All
Visual C++ console from form
Hi! How can I call a Console window from a form application Ok: I dug a little deeper and I think I know what is going on here. The problem is that by-default a Windows Form application does not have a console associated with it: so any calls to Console::WriteLine will send the output into a black hole (\dev\null). The case where the application will work is if you start it from a console window because in this case the application will ha ...Show All
Visual Studio Ambiguous match found (Beta 3)
When we load one of our web applications we get the error " Ambiguous match found" Line 1: <%@ page language="c#" inherits="Dell.Sales.Symphony.DiscountAdmin.DiscountingToolChooseSegment, App_Web_k8zp7lm6" %> The code for this page is inside of an auto generated dll created by msbuild. There are several dlls in the bin directory with the format App_Web_< hash >. I've looked through the various dl ...Show All
.NET Development Slow connection - Operation timed out
I have a application written in C# which connects to a web service thorugh https, sends a SOAP envelope and get's a reply. My problem is that during the file transmision the application locks(freezes) 'till I get some king of reply and then displays the results. That's my first problem and the second would be that if the connection is slow I get a reply saying that the operation timed out no matter if a set or not a timeout value for the ...Show All
.NET Development changing node attributes
Not sure if this is the right place for posting this since I'm using Visual C++ 6 and not .NET, but here it goes. I'm trying to write a small program that works with certain XML files. One of the things I'm trying to get my program to do is look through the XML file finding all tags with a certain name and changing one of their attributes to a specific value. Right now this is what I have (and since I can't find any good tutorials on implementin ...Show All
Visual Studio Express Editions Enabling WSE Support
hi, does anyone know how to enable WSE support in Visual C# Express Edition I tried unistalling both the WSE files and Visual C# and re-installing them etc... all to no avail. The readme for WSE 2.0 states that there is a know bug where the WSE Settings 2.0.. option doesn't appear if Visual Studio is not running. is it even possible to add in WSE support to the Express Editions please help! Add-ins are not supp ...Show All
Visual Studio Team System Strange behavior from IDE while running tests
I am following the "How to record and run a Web Test" walkthrough. If I go to the Test View panel and select "Run Selection" on my coded web test, everything goes as expected. However, if I hit F5, as is my habit, it starts by running a manual test (and I tell it to pass this test) and I stop debugging at some point. But then the IDE seems to get stuck in a state between debugging and not-debugging. I cannot edit files without getting a warning ...Show All
Windows Forms Form/Control Sizing
Hello, I'm attempting to create a windows forms application using c#.net. the app has one MDIParent form and several child forms. I am programmatically setting the size of the child forms in the constructor, but before the child form is rendered, the size is being changed. I have no idea where in the code this is happening, or why. Can anybody help me Thanks, rc hi, Is your problem solved by the above reply ...Show All
