Shawn Songer's Q&A profile
Visual Basic cancel project properties changes
OK, here's a stupid question.. With the new project property pages being shown in a document window rather than a dialog, how does one cancel the current set of changes that have been made, rather than saving them As far as I can tell, you can't. Which can't be right so I figure I've missed something. There is no longer a cancel button (although you could theoretically close the project and choose n ...Show All
Visual Studio Visual SourceSafe Internet... ?
Ok... I was just wondering... I need to implement the web pages of the SourceSafe all by myself ! Isn't any default pages for that Hopefully I'm wrong... Please tell me that there is some web-interface with SourceSafe without me having to do it all by myself... ok Moshe. I did install certificate either on the server or on the client. I tried to connect from another client machine and then I've got this error: "The SourceSafe web service ...Show All
Visual Studio Team System System life cycle versus development project versus Team Project versus source control branch etc
System life cycle versus development project versus Team Project versus source control branch etc. I have spent some time exploring the new source control system in Team System now and I haven’t got the grip about the relationships between System lifecycle management, development projects, team project and version control folders/branches. Maybe someone can explain how Microsoft has thought about this and Team System Som ...Show All
.NET Development Connect to Access DB and want to count number of Tables, Get Names of Queries
Hi, I have connected to Access 2000 using ADODB written in VB.Net (Windows Form) and want to find a way to count the number of tables that exist and get a collection of tables names, query names, form names. Does anyone have any idea how I would do this Thanks in advance. Grant. Query the system table SELECT MSysObjects.* FROM MSysObjects; You can get the queries, tables etc. based on the Flags value ...Show All
Visual C# Capture video stream from camera plugged to usb port
Hello all, how can i capture a video stream on a usb port on win xp using C# language only thanks in advance for any suggestion Hello all, how can i capture a video stream from a camera connected to a usb port on win xp using C# language only i would like to set a configuration file in which i fix the settings of the video such as brightness, hue, contrast... thanks in advance for any help ...Show All
.NET Development member login-
beginner. I am trying to create member login informtion I go to the website/asp.net configuration and I start the security browser.. I try to create the new user and set the password,,, THE PROBLEM: It does not accept any password that I put in there. I get the following error message in red 'Please enter a different password ' I am sure someone had the same error.. what is it that i not doing Please help this is frustrating... Thanks Cher ...Show All
Visual C# Accessing an Array using Propery
Hi, I am using properties for Setting and Getting data values, such as, public string ModuleExists{ get{ return moduleExists; } set{ moduleExists = value; } }//end public string ModuleExists How would one use the above concept if the moduleExists is an array of values Thanks Jeff public string[] ModuleExists { get { return moduleExists; } set { moduleExists = valu ...Show All
Visual Basic terminate vb.net console application
Environment: Running this code on my PC via VS 2005 .Net version 2.0.50727 on the server (shown in IIS) Code is in ASP.NET 2.0 and is a VB.NET console application Problem & Info: Application.Exit() is throwing an error in VS 2005 when I debug Error: Name 'Application' is not declared The code: Imports System.IO Imports Sys ...Show All
.NET Development Forcibly unload an interop assembly w/ blocked unmanaged thread?
I have the situation where I think my 3rd-party unmanaged COM object, which has opened a critical system resource, is blocked on a thread or something. In C#, .NET 2.0, I call FinalReleaseComObject() on my object, which returns 0, and then set the varible to null. I tried forcing a garbage collection and it didn't work (I know, it's bad, but I'm trying everything). Watching it run via depends.exe, I see all my other 3rd-party COM DLLs unload ...Show All
SQL Server Format for a bigint parameter in Raiserror
Having a small problem with RAISERROR that I've isolated to a small code sample: The objective is to have the message string in Raiserror correctly report the value of a parameter that is a bigint. The following extract shows the problem: ALTER PROCEDURE [dbo] . [pr_Test] @SomeNumber bigint AS BEGIN SET NOCOUNT ON ; RAISERROR ( 'Test Error Number: %d.' , 16 , 1 , @SomeNumber ) END As written, when th ...Show All
Windows Forms Can a Listbox do this?
Hi, Is this possible for a listbox When the listitems of the listbox are selected and right-clicked, a context menu appears. Then, when the user right clicks on the empty space inside the listbox, the context menu will not appear even though an item is still selected. Also, is the mousedown event used to detect left or right clicks I see, I got the impression that you are asking about WinForm's ListBox contro ...Show All
Visual Basic Binding Navigator Next Item
I have a jobs database and am using data binding navigator in detail view. When the user hits the 'next' key, I want to check to see if one of the fields has a date in it. If it does - I want to display one message and if it doesn't, I want a different message. I've tried to just use code by double-clicking the 'next' but that seems to run code before it loads the new row into the detail view. Is there someway I can automatically ch ...Show All
Visual C++ Compiling DirectShow source code from MS Press: missing mmstream.h
I've VC6++ and VS8 installed on my PC for several Digital Vieo projects. I'm reading Programming Microsoft DirectSow for Digital Video and Television (by Mark Pesce; MS Press) and just want to compile the DSRender example in VS8 (sure I could do in VC6, but I want to start with VS8). The examples have been done for VC7. The comiplation error is: DSRender.h(22) : fatal error C1083: Cannot open include file: 'mmstream.h': No such fil ...Show All
.NET Development Reporting Service
Hello, I use Visual Studio 2005 and SQL Reporting Service 2005. My computer is windows 2003 Server. I have created one reporting service project. In my project, I have two parameters namely @startdate and @enddate. I have one matrix. I want to format background row of the matrix to have different colors. I use the expression like IIF(RowNumber(Nothing) Mod 2,"Grey","White") , but when i view it shows errors like: ...Show All
Visual Studio Express Editions Treeview Nodes
Hello, I have a treeview control with a parent and 2 child nodes. When I run the application the parent node is closed. Is it possible to run the application with child nodes showing I thought there may be a property for fully expanded but can't seem to find one. Thanks Thanks David, very helpful. I will vote on your feedback for sure. It would be a very handy addition. I have found that by using Form load i only ...Show All
