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

Software Development Network >> Philip Quirke's Q&A profile

Philip Quirke

Member List

Henry Wu
Urip
rwerner
McWhirter
Fluxtah
Krenshau
David Cowell
Vijay R
vhhughes
sammaell
Dedal
ajeeshco
KatyG
R.D.
Tobias Boehler
Goonie
kefei
Oz22
MuscleHead
Dale Graham
Only Title

Philip Quirke's Q&A profile

  • Visual Studio Express Editions How can I add OleDbDataReader Object to DataSource ??

    hi, when I retrieve data from remote DB as the following // //.... OleDbDataReader reader; //Executing The Command. reader = command.ExecuteReader(); //Reading if (reader.Read()) { MyBindingSource.AddNew(); MyBindingSource.add(reader); // It doesnt work, whith error.., } //... so how can I add the reader object to MyBindingSource I found other solution, is creat a new DataSet ( NewDS ) to retrieve any data from the RemoteDB , then merge the NewDS with the OldDS . OldDS.Merge(NewDS); thanks for you all, ...Show All

  • Visual C++ Distributing and compiling with external libraries

    I have created a DLL file using ATL. I'm using a external C library in my project. I want to distribute the external C library with my project. I have added the external libraries to the VC project. So no problem compiling in the development IDE. But I want to distribute them. So where should I put these external files and how should I compile the project. Thanks Hello Application deployment is a complex issue, you could start read here to help you make your choice: http://blogs.msdn.com/aymans/archive/2006/04/04/568466.aspx Thanks Damien ...Show All

  • .NET Development IIS defult configure

    Hi, I am a ASP.Net user, and with all of my stupidity I tried to change the IIS configre, didnt backed it up and now I cant find the "Defult" butten, I tried to remove it and add it again but it didnt restarted it. What shot i do Thank you all, Nadav Levintov. I see... you should check the Event Viewer for details on any errors that have occured. That should shed some light on what the problem is :) Also, you may have made changes in the web.config which is stored in your applications web directory. You could rename this file and see if it makes any difference. ...Show All

  • Windows Forms IE7 Tabs Control

    Hi everyone, I was wondering if someone has made a custom control of the IE7 tabs. I would like to use them in a project. Best wishes, Tobias Hi, please post your question in the following newsgroup. http://www.microsoft.com/communities/newsgroups/list/en-us/default.aspx query=custom+toolbars+for+IE&dg=microsoft.public.internetexplorer.general&cat=en_us_28cca3eb-7037-4d4f-bde1-d8efee1f1420&lang=en&cr=us&pt=&catlist=&dglist=&ptlist=&exp=&sloc=en-us thank you, bhanu. ...Show All

  • Windows Search Technologies how to install to get pdf-preview????

    Argg. I have installed WDS 02.06.5000.5378 with adobe reader 7 and foxit Ifilter on my laptop.. and I can search for pdf-filenames and I see them in the preview pane.. (with Reader7 ) I have tried to install wds , adobe reader 7 and the foxit ifilter on my desktop computer.. but I cannot get any pdf preview to work.. anyone knows how to install wds with preview of PDF files (non-ocr files) thx ...Show All

  • Windows Forms Keydown/up/pressed events for a Form not firing

    I'm currently developing some software that has a form that should close when I press the escape key. I've tried to listen for Keyup events on the form, but it doensn't seem to register the keypresses. Any idea what might be awry The code I'm currently using is: private void Form1_KeyDown( object sender, KeyEventArgs e) {   if (e.KeyCode == Keys .Escape)   {     Close();   } } And the form's KeyPreview is set to True... However, if you have a cancel/close button on your form, you can choose it as a CancelButton (also a form's property). ...Show All

  • Audio and Video Development uncompressed YUV to EVR

    Hi, I am writing a simple YUV media source to take in .yuv bytestreams and send it to the EVR. I have modified the MFT_Grayscale to act as a dummy transform to copy the yuv samples to the EVR. I am also using the playbackFX sample for the player. I'm having a problem with the player just showing a black screen, as if no samples are being sent to the EVR. I have verified that the samples are being processed in the dummy transform with the correct image size and attributes for my given yuv sample. I have tried other yuv samples and all just display a black screen, but the samples are being processed for sure. Is there any way to debug this to see if the samples are being sent to the EVR Or does anyone have any clues why this is happeni ...Show All

  • Visual Studio Tools for Office VSTO Outlook Add-In not loading outside of VS2005

    I created a Add-In project using the Add-In for Outlook 2003 project template. I started with some simple code to test functionality and then continued to create the add-in I wanted. During development I always tested using the debug in VS2005. I never had a problem with it appearing this way. However, now that I am trying to deploy the Add-In, I am unable to get the Setup project to work. Even on my own machine, once the setup project is installed, the add-in does not load. I created a simple MessageBox.Show("hello") add-in to see if I had introduced the issue. However, this add-in behaved the same. I could always run it in VS2005; however, when installed from the setup project, the add-in would never load. Another str ...Show All

  • SQL Server Extra Space....

    Hello! I have written a report that is being displayed in a table. For some reason all the way to the right of the table has a HUGE amount of space......I checked to make sure there was no layers over it and I looked in the properties and saw no padding....ANY IDEAS I am so frusterated because this defies all logic!!! Has anybody experienced this TIA! That happened to me and I checked the width of the object that contained the table. In my case, the width of the rectangle that contained my table was way bigger than it should have been. ...Show All

  • Visual C# Delete Access Denied!!

    I'm using the codes below trying to delete files and I got an error that say I'm trying to delete a file that still being used by another process. Please help me how to check which files are being use and skip over that and delete everything else. Here is my code so far, thanks in advance. foreach (DirectoryInfo Dinfo in dirInfo.GetDirectories( "*" )) { foreach (FileInfo file in Dinfo.GetFiles( "*.*" )) { try { file.Delete(); } catch (FileNotFoundException e) { Console .Write(e.FileName.ToString()); } } } Thanks Jason i ...Show All

  • Windows Forms Combo Box

    When creating a Combo Box, Can I populate the drop down options from an XML file If the XML is Dataset compatible, the resulting XmlDataDocument object has a Dataset property exposed. You can use your standard combo-box binding to a dataset. A simple Dataset compatible XML <document>   <table>     <name>Table 1</name>     <field1>Field 1 Value</field1>     . . .     <fieldn>Field n Value</fieldn>    </table>   . . .   <table>     <name>Table N</name>     <field1>Field 1 Value</field1> &nbs ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Input with Keyboard?

    Has anyone else been able to figure this out I have been staring at the example code but keep getting lost in what it all does. Does anyone else understand it and can maybe break it down to a few lines of code for me to at least start from Thank you. Buddy Lindsey Slapped up a rubbish example on 3dbuzz (excuse the dodgy casting on the sprite movement, just mucking about): http://www.3dbuzz.com/vbforum/showthread.php t=137227&page=3#post1114875 ...Show All

  • Software Development for Windows Vista ATL Build Error on DSWizard

    I've installed the Platform SDK, built the libraries, changed the library and header load paths, and added in linking with ATL. Now I'm stuck with: "error LNK2001: unresolved external symbol "class ATL::CAtlBaseModule ATL::_AtlBaseModule* ( _AtlBaseModule@ATL@@3VCAtlBaseModule@1@A)" and I just don't know what to do about it. Google isn't helpful. Any help would be great. Thanks! ...Show All

  • Windows Live Developer Forums Custom Pushpin Transparency Issue

    Hi, This may seem like a studpid question but does anyone know how to make certain parts of a pushpin image transparent. eg. If I draw a red circle pushpin on a white square how do I show just the red circle and make the remainder of the white square transparent Cheers, Scott. Ok these are driving me crazy. The solution to getting transparent png's working in IE6 is using a behaviour which all works well except you must the size of the orginal element. For some reason the size of the image is not being reported properly. So my Pushpins keep changing sizes randomly. I've add to opt for making all of them the same size and setting a fixed height and width for all pushpins. Anybody had much luck wit ...Show All

  • SQL Server VB Express SQL Expert needed for Merge Replication support.

    I have done a couple of little projects in VB express and was pleased with the results. Now I have something bigger in mind and need to know if VB express version of SQL will support merge replication. If not will the full version support it Thanks Dave ...Show All

©2008 Software Development Network