Software Development Network Logo
  • .NET Development
  • Visual C++
  • VS Team System
  • SharePoint Products
  • Windows Vista
  • SQL Server
  • Visual Studio
  • Visual Basic
  • IE Development
  • Windows Forms
  • Visual C#
  • Microsoft ISV
  • Smart Devicet
  • Audio and Video
  • Game Technologies

Software Development Network >> C McQuade's Q&A profile

C McQuade

Member List

Bertrand Caillet
AstAn
Aydın Kaya
James A. Gayhart
Rusty Trawler
simple1
J Jakubik
rdeter
Nirma
PeterFreeb
bobslayer
Coridas
MarcoViY
Kent Waldrop Fe08
Andreas Isler
Kosmo007
WayneSpangler
GR101
Riaan van Schoor
TA123
Only Title

C McQuade's Q&A profile

  • Windows Networking Development Questions of qWave API

    When I call API QOSCreateHandle, the return is true. However, When API QOSStartTrackingClient is called. the return is false and GetLastError returns error code 1168, which says ERROR_NOT_FOUND. My environment is Vista OS build5472.winmain_idx01.060713-1900 with platform SDK of version 6.0.5472.2.1.WindowsSDK_Vista_idw.DVD.Rel.img Thanks for any help... chunkai, one of the reasons ERROR_NOT_FOUND would be returned is if the destination address you specified could not be reached from your local adapter. Is the address you're attempting to track on the local subnet thx. Mathias ...Show All

  • Windows Forms Redirecting a new Application request to an existing Process

    In .NET, I want to make it so my App can only run one instance at a time. But rather than just showing an error message that another instance is already running, I want to set the focus on the existing one. Better yet, if I double-click on a data file (which automatically loads the app and loads the file), I want to set focus on my App and load the datafile that was selected. I know that many standard applications do this. Any ideas on how Thanks! -Nathan Thanks, that helps alot. As for passing any arguments to the original app, such as the file to load, I'm thinking of making a registry key that my program would check for, using a timer, and have the newly loaded app set the registry key, set focus ...Show All

  • Visual Studio Team System The internal state of the database project is inconsistent

    I got this error Error: The internal state of the database project is inconsistent Unload the project and then reload it to resolve the issue. i already Unload and reload the project but not solved any help Me too. Same error. It is not clear what precise step was responsible for the problem. A build was run successfully earlier in the day then: editing was carried out on a few stored procedures, 1 new primary key script was entered, various scripts were examined but not changed. On next attempt to build the error resulted: ------ Build started: Project: pcs db, Configuration: Default Any CPU ------ Error: The internal state of the database project is inconsistent with its contents. Unload the project and then reload ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XNA Download?

    How do I get to the XNA download on Live Marketplace I looked for quite some time. Maybe its my eyes.... Not quite that early Normally I'd say, "sometime near when the sun comes up", but that only applies to my timezone ...Show All

  • Visual Basic ACCESS/EXCEL Comparing Tables HELP

    Ok guys, forgive my noobness but i don't know where to start on this project i'm working on.... I have two tables "products" and "show inventory." First off I need to compare the two tables and make it spit something out telling me which items in the "show inventory" table don't exist in the "products" table. Next, I need to to again compare the tables and in the products table put a YES/NO field on all items that exist is BOTH products and show inventory tables. So basically just marking out all show inventory items in the products table.. I hope this makes sense... I'm no technical writer.. I have a intermediate knowledge of VB/VBA but i'm not sure where to begin here.. Should i use EXCEL instead o ...Show All

  • .NET Development TcpClient.Close()

    what happen if TcpClient.Close() is called when the async operation(BeginRead /BeginWrite) in progress thnx TcpClient.Close() will close the socket of the underlying Stream unless you specified that you don't own the socket . When closing the underlying socket it will unregister from all the async events. ...Show All

  • Visual Studio Express Editions Further study in Visual Basic

    I fully understand the basics and the OOP part of visual basic. I wanted go further into visual basic (data structure, algorithms, ect). 1. Is it necessary to go further into visual basic 2. Is there any tutorials I can learn from Thanks Readme55555 The web is an excellent search tool to find interesting article with regard to Visual Basic (or any tool in fact). Is it necessary to go further into Visual basic Only you can decide if you need more knowledge to achieve the applications that you want to write. If you dont have to skills, knowledge to achieve them - then I would say yes. Is there any tutorials I can learn from Well, your not going to find a list of tutorials for everything. You ...Show All

  • Windows Forms add 2 DataTables into 1 DataGrid

    hi, I have 2 dataadapters that fills 2 datatables i want to show them both in 1 datagrid How do i do it I think detail steps to combine two tables depend on the logic how you want to combine them. If you just want to create a new table with all columns in those original two tables, use following code for example DataTable dt = new DataTable(); foreach (DataColumn column in northwindDataSet.Customers.Columns) dt.Columns.Add( new DataColumn(column.ColumnName,column.DataType,column.Expression)); foreach (DataColumn column in northwindDataSet.Employees.Columns) { if (dt.Columns.Contains(column.ColumnName)) continue ; dt.Columns.Add( new DataColum ...Show All

  • Software Development for Windows Vista Both Client and Server Hosted Workflows in Single Tracking Store

    We are creating a new application and would like to use Workflow Foundation as a fundamental aspect. We know we want to use server based workflows and we are considering client based workflows as well. We envision client based workflows primarily for managing UI aspects such screens to be displayed, as we don't want to manage this from the server due to lag times. My question has to do with how to have a centralized workflow management/tracking system that includes workflow instance information from all clients as well as the server based workflows. We foresee the need to reassign client workflows or to monitor abnormally terminated client workflows through this centralized tracking system (we would need to include persisted workflows as w ...Show All

  • Visual Studio 2008 (Pre-release) Item Activation in ListView

    Hi, I was hoping for some kind of ItemActivated event in the ListView class, but cannot see one. I want to be able to detect users double-clicking or otherwise activating an item in the list view. What is the simplest way to achieve this I tried the ListView.MouseDoubleClicked event but that of course fires anywhere in the ListView. There is the ListViewItem.MouseDoubleClicked event but that only works for double-clicking, not for pressing enter on a selected item. Thanks, Kent Boogaart Seconded, I need this as well, except for a TreeView. I've tried doing this manually with MouseDoubleClick and KeyDown Style/EventSetters and attached handlers but both have their problems -- event setters fire ...Show All

  • SQL Server Inser Problem in the alternative of cursor

    Hi all I wanted to workout with while loop as an alternative of cursor. I am working in SQL Server 2005. I have a table TEST with following values tid tname 1 John 2 Sam 3 Peter I wanted to insert these records into same table or another table using following while loop. But I ended of inserting only last record in the loop, not each one above. --DELETE FROM test1 DECLARE @id int , @lc int , @rc int --SET ROWCOUNT 0 SELECT tid , tname INTO #Temp FROM Test SET @rc = @@ROWCOUNT --SET ROWCOUNT 1 --SELECT @id=tid FROM #TEMP SET @lc = 1 WHILE @lc <= @rc BEGIN SELECT @id = tid FROM #TEMP INSERT INTO TEST SELECT @id , 'ppp' FROM ( SELECT tid FROM #TEMP WHERE tid = @id ...Show All

  • SQL Server Query timeout

    I need to figure out if my query is timing out due to row lock contention. The SqlException trapped in my client C# application contains Error Number 1205 but sometimes it contains -2. I guess the SqlCommand timeout and the server timeout are the two possibilities. Is there a definitive way to find out that the SqlException was thrown due to one of these two reasons Because if it's some other reason, I want to excute a different logic. Thanks, Madhav MadhavG wrote: The deadlocking behavior is not accidental, it's part of my application logic. I am not sure I understand. Are you saying that you coded the deadlock behavior intentionally in the SQL code That sounds really ...Show All

  • Visual Studio Team System Trial edition of Visual Studio 2005 Team Edition for Database Professionals

    The RTM (Final) Trial Edition of Visual Studio 2005 Team Edition for Database Professionals can be found at: http://www.microsoft.com/downloads/details.aspx familyid=7DE00386-893D-4142-A778-992B69D482AD&displaylang=en The Trial edition requires that you have Visual Studio 2005 Team Suite installed. You can obtain a trial version (a rather large download) of Visual Studio 2005 Team Suite at: http://www.microsoft.com/downloads/details.aspx displaylang=de&FamilyID=5677DDC4-5035-401F-95C3-CC6F46F6D8F7 There is no "stand alone" TRIAL version of DataDude. As a trial you will be forced to install at least the trial verion of Team Suite. If you BUY the DataDude SKU as a Team Edition, then you will a ...Show All

  • Visual Studio Express Editions Calculate Emailaddress from multiple textboxes.

    Hi, I'm totally new to programming in VB but you have to start somewhere! It's so cool! What I'm trying to archieve for now is creating an emailaddress based on various input textboxes: FirstName, MiddleName, LastName. The emailaddress should be calculated like this: <1st letter of FirstName>.<MiddleName>.<LastName>@company.com If a user has no MiddleName there shouldn't be an extra dot! The EmailAddress textbox should be generated as you type the FirstName, MiddleName and LastName textboxes. I'm also looking for some tips for input validation. It should only be possible to use alphabetical characters. An additional Initials textbox should only use alphabetical characters and dots e.g. T.K.B. All help ...Show All

  • Visual Studio Express Editions Database doesnt update?

    I have the following code in my program to update my Excel database... It appears to work in that the message box funtions as it should and the record appears to be added as i can navigate back and forth with the new data visable, however when i exi t the application and check the database the new data is not there Try Me .Validate() Me .ContractsBindingSource.EndEdit() Me .ContractsTableAdapter.Update( Me .db1DataSet.Contracts) MsgBox( "update successful!" ) Catch ex As Exception MsgBox( "update failed, the data may already exist please check and try again." ) End Try   Yes. I believe the copy is only made when your program is built. Not sure, I always said No ...Show All

©2008 Software Development Network