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

Software Development Network >> Terry Heath's Q&A profile

Terry Heath

Member List

Erwin Richard
jackycn
heavenly
Andy Brons
GAINSCOM
Henning Pohl
Derek Lan
Alemir
Sunil Nahar
jamieo1908
Lee Eden
BillNoble
kareddy
Brett Nieland
KDJ
mmoeser
Mincheoul Kim
coder#
DeepsB
Mepham
Only Title

Terry Heath's Q&A profile

  • Software Development for Windows Vista How can I use DirectX to manage my video equipment(Usb Camera)?

    I am a beginner of DirectX development. Could you tell me how can I use DirectX to manage my video equipment-Usb Video capture or camera Please give me an VB program example. Sound like you are locking for DirectShow: http://msdn.microsoft.com/library/en-us/directshow/htm/directshow.asp frame=true Some information’s about how to use DirectShow with VisualBasic can be find there: http://msdn.microsoft.com/library/en-us/directshow/htm/usingdirectshowwithvisualbasic.asp frame=true ...Show All

  • Windows Forms Using a crystal report from a dynamically loaded assembly

    I have a windows form app that is loaded dynamically at runtime via reflection.  In that app, I have a crystal report which is set as an embedded resource.  According to documentation, that report should be compiled into the assembly.  When I run the app (launched from a loading application) I get the following message: ************** Exception Text ** ...Show All

  • Visual Basic AnalogTVTuningSpace and MSVidCtl

    I´m trying to develop a decent tv tuner/capture application (since there are no such apps, nowhere, I say) in Visual Basic 6.0. I´m using the MSVidCtl component together with the AnalogTVTuningSpace and IChannelTuneRequest object to achieve this, as described here:  http://msdn.microsoft.com/library/default.asp url=/library/en-us/directx9_c/directX/htm/hostingthevideocontrolinavisualbasicform.asp  and here:  http://msdn.micro ...Show All

  • Visual C# What are some things to remember when drawing in Window Forms?

    Hi all, I'm a beginner developer. I'm writing an application and draw many object like as Ellipse: private void timeout(float x, float y, float k, float z) { Graphics Cerchio; Pen MyColor = new Pen(Color.Red); Cerchio = this.CreateGraphics(); Cerchio.FillEllipse(new SolidBrush(Color.Red), x, y, k, z); Cerchio.Dispose(); } And I draw a timer countdown like this: private void EggTimerForm_Paint(object sender, System.Windows.Forms.PaintEventArgs e) { Point p = new Point(270, 400); Graphics g = e.Graphics; g.DrawString( ConvertToTime(StartTime), ClockFont, Brushes.Red, p, new StringFormat() ); ...Show All

  • Visual C++ Is partial redistribution of VS 2005 DLLs allowed?

    We're looking at migrating our applications from Visual C++ 6 to Visual Studio 2005.  We link in the MFC and the C-runtime DLLs.  Since users download our application over the Internet, we need to minimize the download size as much as possible.  We would need to redistribute the VS 2005 DLLs as applocal. Does the license agreement for redistribution require that the entire contents of the Microsoft.VC80.CRT and Microsoft.VC80.MFC be redistributed if any of them are needed Or would it be possible to just redistribute mfvcr80.dll and mfc80.dll and their manifests appropriately modified, since that's all we need at this po ...Show All

  • Visual Basic Server Explorer - SQL Servers VS 2005 Beta 2

    In VS2003 Pro in the Server Explorer I have: Servers    Computername       Crystal Services       Event Logs       Management Classes       Management Events       Message Queues       Performance Counters       Services       SQL Servers In VS2005 Team Suite Beta 2 in Server Explorer I have the same as above BUT NO SQL SERVERS I can use the Data Connections Wizard to connect to the Server ...Show All

  • SQL Server SSRS 2005 XML datasource & report subscription question

    I'm working to enable subscriptions on some reports that have an active directory web service as a datasource as well as a standard datasource to a SQL server db. I'm admittedly new to reporting services '05, but some research tells me I can't do the job with the current configuration. As the AD web service is an XML datasource, I'm not sure if I can pass an expression...and the reporting service manager won't let me store the credentials on the server...please help! I'll rebuild these things if I have to -- I just need some direction on how to build the reports so a subscription is possible and the data is specific to the user requestin ...Show All

  • Visual C# Database Question

    Hell All, I am creating a program that will be used by about 20 people or so. It is a test case managment system, what I want to do is have everyone connect to a central database on a server somewhere on the network and be able to edit , update, create, save test cases. What I am unsure of is, do I need to write software on the database server to handle transaction, etc, or can i just connect to the database from the program on the users desktops, and load the data both ways from there. I am new to database programming. Also is there a way to write generic database commands, so any database, like MySQL, PostgreSQL, Oracle can be used on the ...Show All

  • Visual Studio 2008 (Pre-release) Error getting LINQ set up.

    I downloaded the LINQ preview and installed it.  It actually installed real quick with no reported errors.  The LINQ-Preview templates didn't show up so I went and copied them into my default templates folder.  I opened up VS and copied some LINQ code into the a code file, pressed compile and received an error stating that: "System.Array does not contain a definition for WHERE".  Any suggestions about how to rectify this Oh man... what a dork.  Yes that works, thankyou! Time for me to RTFM I think.  ...Show All

  • SQL Server Querying Oracle v8.1.7 with multivalue parameters

    I am currently working towards an Oracle server through Microsoft SQL Server Reporting Services (2005) and I am troubling with an "ORA-12704: character set mismatch" error when I generate my reports. What I'm trying to do is to run a query using multi value parameters from Reporting Services to the Oracle server. This have worked fine until recently towards an Oracle version 9 database, but now I'm trying to make it work with Oracle version 8.1.7 and this is when I get the character set mismatch problems. The following query illustrates the problems I'm having: select * from table x where x.date between :startDat ...Show All

  • Windows Forms Problems databinding a combobox

    Hi, I have a winforms app that binds it's fields at runtime to a dataset.  Basically if the combobox/textbox name matches the field name, it is bound. Here's the code that does the binding.. oBinding = New Binding("SelectedValue", dsToBindTo.Tables(TableName), ctl.Name.ToUpper) cmb.DataBindings.Add(oBinding) Pretty straight-forward eh   BUT, when I run this code, the comboboxes stay on the first row in the dropdown, rather than reflecting what is stored in the database!! What am I doing wrong G Did you set the ValueMember for the ComboBox   If not, you need to in order for this to work ...Show All

  • Visual C# "Enter outlining mode when files open" Does not work in Visual Studio 2005

    I like to see my code collapse down to regions when code is open, this is how I work in VS 2003, but in VS 2005 where I have "Enter outlining mode when files open" set to the default value or true. Turned on via (Text Editor-C#-Advanced). When I open up a new code window, the code does not collapse. Am I missing something or is this a VS 2005 bug. Cheers Dave Dave, I moved your post to the C# thread as this is a C# specific question and will best be answered on this forum. Thanks, Dylan ...Show All

  • Smart Device Development CameraCaptureDialog Issues

    I've been having some issues using the CameraCaptureDialog class on an HTC Apache device (rebranded as the UTstarcom 6700): 1. After exiting my application, the device's camera capture screen comes into focus. This happens whether I dispose of the class instance or not, and the Close() method is protected, so I can't call that. Any ideas on getting rid of this lingering capture screen 2. On a seemingly random, intermittent basis, an InvalidOperationException will be thrown from within the ShowDialog() method. Sometimes this will happen after taking 4 or 5 photos, but other times it will work fine for 40 or 50 photos before I give up trying ...Show All

  • Windows Forms keydown event doesnt fire if you have a webbrowser object on your form

    Topic is pretty self explanatory... any suggestions as to why this is happening If i take the webbrowser object off my form, the event fires. If i put it back on again, event does not fire. I have keypreview set Can you Plz send me the same example to me. I hope you will do this small favour. Thanks in Advance,. ...Show All

  • Windows Forms Click Once - How to get version

    I have a clickonce app in VS 2005 that I am trying to print the current version number for.   If I do this: System.Deployment.Application. ApplicationDeployment .CurrentDeployment.CurrentVersion.ToString(); Then I get the error: Application Identity not set. What gives Hi Keith, The property your are using is correct. Is you app ClickOnce deployed. You can try the following code to get the version if (System.Deployment.Application.ApplicationDeployment.IsNetworkDeployed) { string s = System.Deployment.Application.ApplicationDeployment.CurrentDeployment.CurrentVersion; } else {    MessageBox.Show("Not ...Show All

©2008 Software Development Network