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

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

WynApse

Member List

Oran Dennison
djchapin
Suren Reddy
Behn26
Sandeep A
Steven Rosenthal
dr.acv
robertje
tacallah
project2n5e0o1
AJ Software
SameerNSameer
Kroneus
Kevin Hoffman
Mauro_Net
Asher Aslan
averge joe
Donald Sechrest
JessicaM
DKB
Only Title

WynApse's Q&A profile

  • Smart Device Development Disabling the Camera on a HP 6515

    Hi, Anybody know how to disable the camera button on an HP6515 or - for that matter how to trap the button or what application is run when the button is pressed or what Registry settings are used for this type of stuff Many Thanks Chris ...Show All

  • Visual Basic ping IP/host

    hey i have now somewhat succesfully made an ip-tracker. how do i make it able to "ping" an IP og host sa it will send out 4 packets or something and then count how many returns you know what i mean im sure. and is it possible to get a "whois" thing build in to it im using Visual Basic xpress 2005. //Martin No The process is purely a call to an external process.   You cant update a progress bar from here.   This will result in the window not showing.       Public Shared Function RunExecutable(ByVal ExecutableName As String, ByVal args As String) As String         Dim p As Diagnostics.Process = New Diagnostics ...Show All

  • Visual Studio File versions related to a label

    I am trying to get the numeric version number (number of times the file has been modified) of the files associated with a particular label. A requirement of our project is to know the numeric version number of all source files in a particular "Version". We used to use CMS on a VAX Station and the output looked like this Files in version "1.3": file1.c (3) , file2.c (12), file3.c (1) This information is what we still need. The numbers in the parethesis are the numeric count for the number of times the file has been modified. I can see the data (would have to parse the text file output and pull out what I need) on each file under the history option using the FROM and TO fields, but I have > 900 source files, ...Show All

  • Visual Studio Need help developing a COM Add-in for Word(Office XP)

    Hi all, I created a "Shared Add-in" project in Visual Studio .NET 2005 and tried to develop a simple hello world COM add-in for Word. After created the project, it automatically generated another setup project and this is good. Then I added a reference to the Word Interop Assembly in the Add-in project and confirmed that the DLL file actually references to assembly in windows\assembly folder. Since I just want to make sure that Word can connect to this COM Add-in, I simply added a statement MsgBox("hello world.") to every event that appears in the default Connect class. Then I built both the add-in project and the setup project and right-clicked on the setup project and selected "Install" to install the add ...Show All

  • Visual Studio Express Editions Searching multiple of Excel Files via Visual Basic

    I am writing a program that has to search through a multitude of excel files (42 to be exact). In each of these files I am searching for the same exact string. After finding the string I have to grab 2 more columns of data. This data will then be placed in a seperate workbook. I was wondering what the fastest method of roaming through these 42 files would be and what the code would look like to go through each workbook I know how to open individual workbooks, I just didn't know if there was an easy way to go through all the workbook files without writing a string for each one. The program WILL go through every file each time. Thanks in advance for your help. Private Sub entityButton_Click(ByVal sender As System.Object, ByVal e As System.E ...Show All

  • Visual Studio Express Editions Can't get it to start

    I'm making a Hello World application, but I can't seem to execute it, I try making a Win32 Console Application, but that didn't work. Which project should I start it with It compiles without any errors, but when I run the Console Application, it shows nothing on the Console and it turns off right away. ...Show All

  • SQL Server programmitacally build flat file connection manager

    Hi , Is it possible to build on the fly a flat file connection manager and choose column names in the first data row = true and retain the column names after I add columns by using the add() command thanks ahead Eran ...Show All

  • .NET Development binding a dropdownlist

    <% @ Import Namespace = "system.data" %> <% @ Import Namespace = "system.data.oledb" %> < script runat ="server" > Sub button_click( ByVal s As Object , ByVal e As EventArgs) Dim conAccess As OleDbConnection Dim cmdInsert As OleDbCommand Dim cmdSelect As OleDbCommand Dim dtrteam As OleDbDataReader Dim strInsert As String conAccess = New OleDbConnection( "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA Source=C:\Documents and Settings\axb59274\Desktop\PfE New Tables.mdb" ) conAccess.Open() strInsert = "insert into lis_per ([last], [first], [teamid], [email]) values ( , , , )" cmdSe ...Show All

  • Visual Studio Team System No changes to merge message

    I'm trying to merge a branch back into the source it came from and Team Foundation Server is telling me, "No changes to merge". If I compare a file I know is different between the branch and source it shows many differences. Has anyone experienced this before or does anyone know why TFS would say, "No changes to merge" yet show differences between files Thanks! Chris No. Having that be the default behavior would be very annoying, obviously. If you want to re-merge something you've already merged, you need to use the /force option. ...Show All

  • Visual Studio 2008 (Pre-release) Getting list of all dependency/attached properties of an Object

    In Visual Studio, in the XAML view when we add a element tag say <Rectangle...> and hit the spacebar, we get a list of all the attached properties and dependency properties of the object. (For e.g. Canvas.Left). How can this be achieved through procedural code I tried using Reflection (on a Rectangle object in above case) but it did not help. Thanks, Niranjan Hi Josh, Thanks for the response. Here is my specific requirement - In my logical tree, I want the user to be able to provide any object name and any property name on that object as string inputs. Based on these inputs, I need to set a value on that property for that object (more specifically I want to set a bi ...Show All

  • Software Development for Windows Vista regarding invokeworkflowactivity based on xaml

    Hi, How can I make the InvokeWorkflowActivity call a child workflow that is XAML only state workflow I used the following code snippet instead of invokeworkflowactivity IStartWorkflow aWorkflow = executionContext.GetService( typeof ( IStartWorkflow )) as IStartWorkflow ; Guid guid = aWorkflow.StartWorkflow( typeof ( SampleWorkflow1 ), parameters); Here StartWorkflow takes workflow type as argument. How can I use the XAML only file Take a look at this post for more info. ...Show All

  • Software Development for Windows Vista WPD Api Sample failing to return Device Count

    Hi Experts, I am having an issue with the WPD Api sample provided with Windows Vista SDK and I am running the application in Windows XP. I am trying to identify a WIA device via the IPortableDeviceManager interface. I tried with IWIADeviceManager interface earlier but switched to the former since thumbnail full path method calls were not returning proper results. I could compile the WPD Api Sample workspace and could successfully register the Interface, IPortableDeviceManager interface, but the same returns 0 devices when i call: hr = pPortableDeviceManager->GetDevices(NULL, &cPnPDeviceIDs); I have connected the camera in PTP mode and not in USB mode. Any ideas or hints on why this is happening Or is there a ...Show All

  • Smart Device Development Mute when using TAPI to make a phone call

    Hello, Windows mobile 2003 pocket pc phone edition. The background music is muted for several seconds when I use linemakecall to make a phone call. Our application won't allow this interruption. Could anyone give me a hint to solve this problem Thank you! try to take a look to registry: HKCU\ControlPanel\SoundCategories InCall and InCallFeedBack (InitVol value) I hope this help you ;) ...Show All

  • Visual Studio Team System code policies : before check in, must build succese in developer localhost

    We would like to make use of the code analysis policy to verify the quality of code being checked-in. My questions: (1) Are there existing policies developed for build project in Developer localhost before check in?If can't build, will not check in. (2) If not, how does one go about developing these policies Thanks, Yes - http://blogs.vertigosoftware.com/teamsystem/archive/2006/02/27/2307.aspx ...Show All

  • Visual Studio Team System VS crashes when trying to change database connection in a SQL Project after installing datadude

    As the subject says, since installing data dude CTP 6 and still the same after CTP 7 when I try and change the connection string on the properties on a SQL project VS crashes. Multiple crahses have been submitted. I have tried reinstalling VS team suite but no luck. Any pointers or should I raise a bug in connect. Simon, Can you please describe the steps you are doing before observing the crash, starting from opening the VS instance. Does it also happen on the empty project. Which connection string you are changing. "Target Connection:" What was the value before. - Sachin Kumar (MSFT) ...Show All

©2008 Software Development Network