Software Development Network Logo
  • Microsoft ISV
  • VS Express Editions
  • .NET Development
  • Windows Vista
  • Visual C#
  • VS Team System
  • SQL Server
  • Visual Studio
  • Visual FoxPro
  • Visual Basic
  • Architecture
  • Visual C++
  • Windows Live
  • Game Technologies
  • Windows Forms

Software Development Network >> pate's Q&A profile

pate

Member List

ACorbs
Piper Douglas
Pierre Charbel
ChandraP
Neotick
root16749
Tami19813
Brightspot
Yu Wang
gtarnold
DLDeveloper
rajuraju
HLdeveloper
teacake.the.cat
JoshSommers
even
ScottLeo
C#TURK
Madisn
Shawn_H
Only Title

pate's Q&A profile

  • Visual C# Wave Recorder - problems with a splitted/joined audio record

    I've written a small application to record data from an audio device to a wave file ( based on this article ). A further function is saving/splitting a recording in several files. If I play the files later back, it should sound as one continous recording, but it doesn't. There are short breaks/clicks in between. It seems that the recording function doesn't capture the input properly. You can find my application/VS project here (22 KB): download Can anyone see what's wrong Any help appreciated! Hi Bandman, For this issue, it seems more to be an issue about how to handle the WAV file. I suggest you p ...Show All

  • Software Development for Windows Vista Workflow Changes

    i placed 2 code Activities . In one CodeActivity - i added throw Activity using workflow changes.- working fine In Second Code Activity : i wanted to remove the throw Activity using WF Changes - but it is not deleting (i am not getting the refrence of Dynamically added Activity). my Question is - How do we get the reference to Dynamically added Activity Did you try thw following WorkflowChanges changes = new WorkflowChanges (wRoot); changes.TransientWorkflow.Activities.Remove(changes.TransientWorkflow.Activities[ "throwActivity" ]); workflowInstance.ApplyWorkfl ...Show All

  • Visual Studio Team System Test Run deployment issue: The location of the file or directory <assembly path> is not trusted.

    I am getting this error when I try to run a unit test.  The assembly is a 1.1 assembly that is strong named.  What else do I need to do   For this you need to trust path the assembly is from. This can be done through the .net configuration wizard -- Just add that specific path as full trust, and you should be fine. ...Show All

  • Visual Studio Team System Daily Builds - is it possible ?

    hi , I have seen the word daily builds in MSF docs. Is this really possible in a real world How small the project may be , it would still be difficult to do a daily build. As a programmer , if im doing some work , i cant give out a completed code in one day . Solving some issues would take more than a day . If no new code has been updated daily , then why do a daily build . That would be waste of resources . I think, the builds would be done based on more appropriate factors like do a build when a certain number of lines of code has been added newly. do a build when new features are added. do a build when any change occurs (hardware/softwar ...Show All

  • SQL Server how can i use The "Use Database" statement

    the question is how to use use database statement if the name of the database contain spaces please help me Thanks CREATE DATABASE [I SHALL NOT USE BLANKS IN ANY OBJECT NAME] GO USE [I SHALL NOT USE BLANKS IN ANY OBJECT NAME] SELECT * FROM INFORMATION_SCHEMA.TABLES USE Master GO DROP DATABASE [I SHALL NOT USE BLANKS IN ANY OBJECT NAME] -- Frank Kalis Microsoft SQL Server MVP http://www.insidesql.de ...Show All

  • Visual C# Strange prolem with Culture settings

    Hi, We are writing the .net application that should always work in en-US culture, regardless of the control panel settings. I was able to force the GUI culture to be en-US by the following code Thread.CurrentThread.CurrentUICulture = new CultureInfo("en-CA", true); Thread.CurrentThread.CurrentCulture = new CultureInfo("en-CA", true); After that the DateTimePicker components are always displayed in en-US culture, which is good. But the PROBLEM is that if I retrieve the the DateTimePicker value in the code, it comes in Control Panel settings again. To retrieve the value i use the following: pickerDate.Va ...Show All

  • Windows Forms Completely stumped... reallly need some help on this one!!

    Hi all, I have an app developed in VB.Net which uses Photoshop scripting.  In the Photoshop object model there is an object called TextItem which allows you to put text on a layer.  One property of TextItem is Position which is defined simply as an Object.  It expects two doubles - the x and y position of the text on the layer. When  ...Show All

  • Software Development for Windows Vista No integrated help for November WinFX

    I have upgraded from the WinFX September CTP to the November one, and corresponding versions of .NET and VS2005. Unfortunately the WinFX documentation is no longer accessible in VS2005. Does anyone know it there is a way to force the WinFX help documentation to be visible in VS2005, or indeed visible anywhere else Lori is correct. The filters for Nov CTP are a bit busted. We're trying to fix them for the next release. For VS 2005, just select the "No Filter" or "Unfiltered" filter and the WinFX Development content should appear. Keith Swem Windows SDK ...Show All

  • Windows Forms Clipboard and Thread

    Hi I like to watch the clipboard in an thread. And when there is any changing i like to get an Messagebox Followoing Code I have: using System; using System.Collections.Generic; using System.Text; using System.Collections; using System.ComponentModel; using System.Runtime.InteropServices; using System.Windows.Forms; using System.Drawing; using System.Data; namespace ThreadTest.OwnClass { class ClipboardViewer : System.Windows.Forms. Form { public delegate void ClipEventHandler ( ArrayList clipdata); private System.ComponentModel. Container components = nu ...Show All

  • Visual Studio 2008 (Pre-release) IIS hosting on XP: "Collection already contains an address with scheme http"

    Hi, I'm trying to run some of the samples from the 15th April documentation CTP, but they keep failing in IIS with the error "Collection already contains an address with scheme http". I saw another post on the forum but it seems to describe an issue with host headers, which I think doesn't apply to my problem since I'm running XP. The exact same code hosts OK with the development server (c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\WebDev.WebServer.EXE), so this has to be an IIS problem, right Any ideas about how I could troubleshoot this Oh, I was going to try to run servicemodelreg.exe as described in the help to try to fix thi ...Show All

  • SQL Server Question on Integration of SSRS 2005 Graphs into Sharepoint

    I have been assigned to work on a dashboard (see jpg below) which will hook into our Intranet on SharePoint 2003.  I have a few questions as in teh approach and what is possible by creating charts through SSRS 2005 report(s): http://photopizzaz.biz/dashboard.jpg 1) what technique to use to show all 4 graphs simultaneously on the same page in SharePoint Webparts   Is WebParts the best way here to accomplish this 2) Eventually, they want to be able to click through on the graph parts such as bars, etc. and perform clickthrogh using Reporting Services.  How can this be seupt on graphs like these   ...Show All

  • Visual Basic How can I copy an entire table row to the same table

    I have to copy a table row to a new row in the same table, but with a different key. Since I have seven of these tables, each with many fields, I don't want to do it one field at a time - not just because of the work, but also the maintainability. Is there a simple way to copy a row Even a "for each field (or column )" approach would be preferable to explicit code, but I don't know how to do that in this environment. I'm using a Table Adapter and Binding Source for each table. You might have to create another temporary datatable. then using datatable.importrow looping to import the particular row yo ...Show All

  • Windows Forms Active Directory Authentication

    Hello, I apologize if the core question is somewhat out of topic to this forum.  I am currently working on a windows form application which requires that out client / server app authenticate off an active directory.  We are charged with the difficult task of authenticating both in a connected and disconnected mode.  While disconnected (using a laptop)  ...Show All

  • Smart Device Development More memory/Storage Card in Emulator for VS 2003?

    Is there a way to add more memory/storage card to the emulator in VS 2003 I need a little more working room on it. Thanks. Shut down emulator (do not save state) In Visual Studio (not emulator!) Menu/Tools/Options/Device Tools Select the target emulator from the list and click Configure next to Startup Server dropdown. In the dialog choose System tab and enter the amount of memory required. ...Show All

  • Visual Basic Cannot open existing form in Designer HELP! - VB 2005 Express Edition Beta

    This is so aggravating because I'm sure it's a simple thing! Using the new Visual Basic 2005 Express Edition Beta. Created a project, form, controls, etc.  Worked great.  Love it, compiled perfectly. Saved everything, closed the program, went to bed.   Woke up, opened the project, but now CAN NOT open the form (form1.vb) in Designer mode!!  I can open the code, it's all there, exactly as I left it, but cannot get back to the designer mode to (easily) add more controls to it! F7 just opens the code, right-click just gives me code option, not designer option. This is amazingly fr ...Show All

©2008 Software Development Network