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

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

TimHatton

Member List

Michael1138
Terence Blyth
Polaris7*
Limmer
Yvan
vmit
George Kremenliev
Adelaid
offordscott
srichand
Roger C Garrett
Dave Bos
SivaS
Jan Shao
brsphere
MiggyE
Lloyd Saldua
BrianMac
skipcoombe
braden2
Only Title

TimHatton's Q&A profile

  • Visual Basic I have problems in my registry app, please help?

    Hello, I got this application which was compatiable with Visual Basic 6.0 so i upgraded to Visual Studio (basic) 2005 BETA 2 and then it didnt work. What it does you click a command button and it inserts keys to the registry and adds a Shell Context Menu and 'Upload to GuruImages' will appear when you right click a .png file. Could somebody tell me why this doesnt work, and how would I make it insert these keys into the registry on installation and how will I set the values Thank You, Here is the code: Option Strict Off Option Explicit On Friend Class Form1     Inherits System.Windows.Forms.Form     &nbs ...Show All

  • Software Development for Windows Vista Problem with BDA IPSink Filter

    Hello All! Hope this is the right place for putting my problem description ;-). I am currently developing a DirectShow filter for decapsulating IP over DVB data using ULE encapsulation ( RFC4326 ). This is similar to what the BDA MPE (Multi-Protocol Encapsulation) filter does which is provided by Microsoft. The DirectShow Graph used looks like this: Network Provider (e.g. DVB-T) --> Tuner Device --> Capture Device --> MPEG-2 Demultiplexer --> ULE Decaps Filter --> IP Sink Filter The IP Sink fFilter creates a virtual network interface to which the decapsulated IP data is delivered. This ...Show All

  • .NET Development XmlDataDocument and EncryptedXml Problem

    Hi there Gurus! Well, this is a new thing happening, and I believe it has not happened to anyone before because I did not find anything related to this problem on the web: I have this simple code. Dim Doc as XMLDataDocument Doc = New Xml.XmlDataDocument(Ds) Doc.PreserveWhitespace = True Doc.Load("file.xml")  'This file IS ALREADY ENCRYPTED Dim exml As New EncryptedXml(Doc) exml.AddKeyNameMapping( "some key" , tDESkey) exml.DecryptDocument() On this last line of code I get the following exception: "Cannot load XmlDataDocument if it already contains data" Can anyone see what is happening Any ...Show All

  • Visual Basic no output visible from debug.print(...)

    Hi I create a simple Windwos Form Application, place one button on the main form which executes debug.print("hello") Pressing the button while running the application in IDE generates no output in the Output window. (neither 'Show output from: Debug' nor 'Show output from: Build' Debug is the active configuration and 'Program Output' and 'Exception Messages' are enabled to show in the Output window. My IDE is: Microsoft Visual Studio 2005 Version 8.0.50727.42 (RTM.050727-4200) Microsoft .NET Framework Version 2.0.50727 Installed Edition: IDE Standard Does anybody know how to resolve my problem Thanks Reto Are you using ...Show All

  • Windows Forms what happens when more than one applications access same ACCESS db locally?

    Say: I have 3 applications running at same time which all communicate to the same ACCESS db on my C:\ drive. If I modify the data on one application, commited the change to db, will the data displayed in rest 2 applications be automatically updated If not, do I need an extra update/refresh functions in every application so that I can manually update the data shown on rest 2 applications when they are changed in one application plz help No, other applications will not be updated. Your applications only retrieve data from the database when you tell them to, so if you change data from one application, other applications would have to r ...Show All

  • Visual Studio C++ express edition and JIT debugging

    I installed Visual C++ 2005 express edition (+ the SDK) on a computer which already had the Visual Studio 2003 installed. Now if my program crashes the JIT debugger which is available is the 2003 version. It appears to have problems with the version8.0 dlls ( ) so I would like to invoke the express edition debugger here. Is this possible, or is it something only available with VS 2005 pro I noticed that C:\Program Files\Common Files\Microsoft Shared\VS7Debug contains some relatively new files (coloader80.dll etc) which makes me some what hopeful that I would be able to somehow solve these problems. Edit: While writing the text above I conti ...Show All

  • Windows Forms Changing the Target Extension of an output file

    I would like to be able to change the extension of an output file from the default '.exe' to another extension before it gets inserted into the setup project.  How can I do this Tim, this isn't supported specifically with VS.  However you could rename the built output then add it as a file to the setup project.  You could automate this by having the post build event of the application (or the pre build event of the setup project)rename the built output. Hope that helps ...Show All

  • Visual C# Make a file 'DependentUpon' via the IDE

    Easy question, I can modify a C# project using notepad to make a file DependentUpon another file, but is there a way to do this in the IDE Thanks Yes, you can...:)) The code below is from an add-in I developed, add-in which generates some files and adds them to a C# project and makes them dependent of the file they were generated from. I'm using it in VS 2005 Pro and it works wery well. Create a new Add-in project in VS 2005 and you'll see what are all classes presented here (DTE2, Project and so on); Of course, you can refine this example further...:P private AddFileToProject( string tempFileName, bool ask ) {     pr ...Show All

  • Software Development for Windows Vista Exchanging parameter enter the state machine workflow and the host application (web)

    Hello, I want to pass paremeters to the different states in the state machine workflow with event driven . Can I do it with the raising event method... if it's possible, how Or should I utlize the custom read/write activity,knowing that this activity is compatible with the Beta 1 version and I am working with the beta 2 version. Thanks in advance Maaloul wrote: Hello, I want to pass paremeters to the different states in the state machine workflow with event driven . Can I do it with the raising event method... if it's possible, how Or should I utlize the custom read/write activity,knowing that this act ...Show All

  • Visual Studio Express Editions VB 2005 Express/SQL 2005 Express - Using Code for Data Handling

    Hi Pretty new to using VB 2005 Express. I would like to use a database with one row of initial data, which after a program has been used will then update that row of data on exit. My problem is that some data will be bound to controls on a form but I would also like to read/update parts of the data row just using code. Can anyone point to some suitable code. Thanks Billzz hi, you chich those links ADO.net Quick start >>> http://www.asp.net/QuickStart/howto/doc/adoplus/overviewcontents.aspx Connecting and Retrieving Data in ADO.NET >>> http://msdn2.microsoft.com/en- ...Show All

  • Visual Basic Sending an Email containing a Hyperlink

    Can anyone help me with the following: I would like to automate sending an Email (via Outlook) containing a hyperlink to a predefined file on our server. I used the code below to send the Mail, which works fine, but I cannot get it to include the hyperlink in the body: Dim EMail As Object Dim Link As String Link = "G:\...." 'Filepath Set EMail = CreateObject("Outlook.Application") 'Assign Outlook application to variable With EMail.CreateItem(olMailItem) .To = "XYZ@....." 'email address .Subject = "..." 'Something for the subject Field .Body = Link .Send End With Set EMail = N ...Show All

  • Software Development for Windows Vista Bad WorkflowPersistenceService example on Beta2 documentation???

    Hello, I'm inspecting the example of a custom WorkflowPersistenceService but the class ActivityExecutionContextInfo does not seems to be public, this example contains invalid code or do I have something wrong (this class was public on Beta 1) Regards, M Hi Markus, Yes this class is made internal after Beta1. I Guess you are using Beta2 bits. If so please use the Sample for CustomPersistenceService as guidance.Samples are located at:-%Programfiles%\Microsoft SDKs\ Thanks, Srikanth. ...Show All

  • Visual C# Connecting With C#

    Hi, Any body now the connection with MySql And Postgere Sql in C#. plz Help me. U can connect to MySql using MySql Managed Provider. U will find the assemblt at www.mysql.com . Downloa the assembly add reference to ur project. Or You can use OleDB Connection Provider to connect to MySql or PostGRE. Regards, ...Show All

  • Windows Forms Major Smart Client Deployment issues

    Ok I have read though alot of stuff.  I have tried to do this two different ways (deploy though IIS). One way was to have an default.aspx page with a button on it. with code like this on the button click even.         Dim Asm As System.Reflection.Assembly = Asm.LoadFrom("http://10.1.1.50/webdeploy/WebDeployTest.dll")         Dim Obj  ...Show All

  • Windows Forms Formatted AutoNumber Fields

    I have an access database, which has an autonumber field in a specific table. This field is formatted as follows, and is also the primary key for the table "CS-"00000 Thus, each time a new record is added to the table, access assigns the new record with the value (ie, CS-00001, CS-00002 etc) When connecting this database to a project in VB 2005, the datagridview or textboxes only display the numeric value (1,2 etc) Is there anyway that anyone knows how i might get the program to display the full CS-0001 etc for each record, rather than just the number Is there specfic formatting i can apply to the datatable inside m ...Show All

©2008 Software Development Network