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

Software Development Network >> Christopher M. Keslin's Q&A profile

Christopher M. Keslin

Member List

KingKarter
jbe2277
Landon Parks
XNA Rockstar
Nathalie12
jay_jay
alien-
Whoisit
DJ Lordee
Janetjyothi
carlop
moerderin
Danny Tuppeny
Uwe Keim
furjaw
Roland J Young
Josh Smith
Jutsin Leung
DegreeZ
Amos Soma
Only Title

Christopher M. Keslin's Q&A profile

  • Visual Studio Team System File/Directory Copies

    Does the version control system supports copying files or directories to a different location at the repository level, while retaining the history When I view the history of the branched file I see only changes made from the time of the branch. I would like to see the whole history of the file since it was created in the first version. Wojtek wieboda ...Show All

  • Software Development for Windows Vista Drag n' Drop files in Vista RC1?

    Dear all, I find a very strange issue in Vista RC1. If we wanna add "requireAdministrator" in the program, (Ref http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnlong/html/AccProtVista.asp ) The program will still fail to get the "WM_DROPFILES" message from Vista. Does anyone have the same problem ...Orz Best Regards, Shuyang p.s. The following is my manifest < xml version="1.0" encoding="UTF-8" standalone="yes" > <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <assemblyIdentity version="1.0.0.0" processorArchitecture="X86" name="Microsoft.Windows.XPStyle&q ...Show All

  • Software Development for Windows Vista Overlaying Simple Text on a video capture Application

    Hi All, I am a beginning programmer and this is my first time doing any DirectShow Application and was hoping that I could be provided with some help. Basically, I want to use the playcap.exe (packaged in the c++ samples folder) video capture application and overlay text on the video. I read everywhere that I would have to define a vmr9AlphaBitmap and "blend" it into the video. Is this the only or easiest way to accomplish this (Eg. text.exe) Again, all I want to overlay is simple text. Also, could is it possible to edit the bitmap during runtime with different texts, if so what would be the logic Thank you. Use IOverlay interface to setup the color key. Then you will be able ...Show All

  • Visual Studio Page advance and reprinting

    Is it possible to advance a page, reprint title and headders, and then print detail lines I am using VS 2005 with Visual Basic backed by SQL Server Express 2005. I am printing customer bills and this new issue has arisen. There is 1 detail line format in my report. The fields on the report are coming from a working table. All customers are processed and all of their info is saved in multiple rows on this table one after another. Example: Customer 1 ________________________________ ________________________________ ________________________________ Customer 2 ________________________________ ________________________________ ________________________________ Customer3 ________________________________ .... ...Show All

  • Visual Studio Team System determining number of lines of code in a method - custom fxcop rule

    How do I determine the number of lines of code in a method Thanks in advance. Also keep in mind that you will need to ignore instructions with the following OpCodes as these instructions will not have source context information: _Locals, _Try, _EndTry, _Filter, _EndFilter, _Catch, _Finally, _Fault, _EndHandler. -Todd King ...Show All

  • Visual Studio Express Editions How to suppress radiobutton click or another approach?

    New user of VB 2005 Express. My application has a form that contains a few radiobutton groups. The user selects the desired buttons and eventually hits an OFF button and his selections are written to a file. The next time the application is executed, the form is opened and the file is read, setting the buttons to the values they had when the last execution terminated (this is done in the form Load event). All works well, but the click event for the radiobuttons is being executed as I set the "checked" . That causes some other program actions to occur which are undesirable at this time. Question is: how can I set the radiobuttons via the code without triggering the click event As an alternative, is there some way that I can ...Show All

  • .NET Development Access Excel File On Different Server ** Help Urgently Needed Plz **

    Hi all, I am trying to link to an excel file on a web directory on a different server but can't seem to get access to the file, This is the code i'm using: Dim sConnectionString As String = "Provider=Microsoft.Jet.OLEDB.4.0;" _ & "Data Source=\\fse1web563\fsetrain$\public\Equiv\FSE_PAS.xls;" _ & "Extended Properties=Excel 8.0;" Any ideas, help appreciated I've tried it on mine using this: " Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\\server\\C$\\Book1.xls;Extended Properties=""Excel 8.0;""" Does this one work for you difference being that the Extended Properties section is in double quotes ...Show All

  • SQL Server Linear equations?

    Is there a way to solve a system of linear equations in Analysis Services Let's say I have a table with two columns for all the coefficients: C12 - 0.30 C13 - 0.70 C21 - 0.15 C23 - 0.10 .... Is there something in Analysis Services that can do this And if you want to see an example of how these LinReg functions can be applied - you can check the following article: http://www.mosha.com/msolap/articles/mdxlinreg.htm ...Show All

  • .NET Development C# Asynchronous Socket. How to reject unwanted connection?

    Hi all, I am a newbie on C# socket programming. Can anyone teach me how to reject an unwanted connection based on the IP This is my code (it does capture that the IP is not the wanted IP, but then after rejecting this, the main socket won't listen anymore): Socket tempSocket = m_mainSocket.EndAccept(asyn); string cIP = ((IPEndPoint)tempSocket.RemoteEndPoint).Address.ToString(); // I want it to only accept connection from 202.103.212.32 if (cIP != "202.103.212.32") { tempSocket.Close(); Console.WriteLine("Rejected connection from " + cIP); m_mainSocket.BeginAccept(new AsyncCallback ( OnClientConnect ),null); } else { m_workerSocket[m_clientCount] = tempSocket; tempSocket.Close(); } Please help, as I've been ...Show All

  • Visual Studio Express Editions how to set a thread to run at specific core

    1. is it possible to set a thread to run at specific core. 2. to find number of core using vb.net BeginThreadAffinity will keep a thread on the same core/process for a specific duration. But there's nothing in .NET to specifically set the affinity of a thread to a specific core/processor. What are you attempting to do ...Show All

  • Visual Studio 2008 (Pre-release) How to Capture video from webcam using WPF webbrowser application....

    Hi all, I am developing web based video conferencing using winfx 3.0.....all tasks like Whiteboard Sharing,Chatting,QA.... completed accept capturing client video,audio and passing it to back to server... If someone suggest me how to do it... it really helpfull to me accomplish my goal.... Regards Unfortunately it is not possible to capture video and audio using a web browser application because of the security restrictions. You must use a stand-alone application (maybe deployed using ClickOnce). ...Show All

  • .NET Development retrieving a UDT from a SqlServer Express 2005 function via C#

    I'm just learning about UDTs and SqlServer Express, and am trying to figure out what's possible and what's not using a simple example. I have created my own UDT (called EventDBEntity, not a very good name!) and registered it in my SqlServer Express 2005 database using Visual Studio 2005. I need to have a SqlServer Express function return a UDT to my C# code. In SqlServer, I created a scalar-valued function to return a UDT to me - in the function it queries data from a table and puts it in a new EventDBEntity and returns the new EventDBEntity. This is different from most of the MSDN examples I see in that I have no column of type EventDBEntity, instead I am trying to create the object on the fly and return it back. The function gives bac ...Show All

  • Visual Basic E-commerce

    Hi someone know where is possible to get a sample of site e-commerce for to learn I use Access, for this reason I cannot use Starter Kit for SQL Thank a lot Bye You can use the starter kit to give you the logic required to setup the e-commerce site....the only difference between a backend SQL database and the Access database will be the provider and connection strings...you can create the exact same schema in a Access db! http://msdn2.microsoft.com/en-us/vbasic/ms789080.aspx PayPal-enabled E-Commerce Starter Kit ...Show All

  • Visual Studio Express Editions process kill

    Hi guys can you help me out here if I do a Process.Start( "c:\program files\super mp3\smrpro.exe" ) smrpro opens in the middle of my form........ how do I reposition it, or dock it....and how do I kill it Process.GetCurrentProcess.Kill()......just kills my project any help please cheyenne   For Learning..... Start a new project...... Tools | properties | choose Toolbox items | Com Components | windows Media Player This will add the control to your tools box... but it's hard to find. Look under General The Windows Media Player Control can be moved to your form just like any other control. The player I sent you, is Windows Media Player. You can completely control it's size s ...Show All

  • Visual Basic coding charts with data in datagrid: is there a good way?

    I have actualy posted something like this before but i think i asked the wrong questions....here the scenario: i have managed to make my app draw out data from an access file based on user input. my lecuturer have ask me to make the app able to generate charts on that data based on further user input. I realised that the data is now in the datagrid and no longer in access. There were some suggestions from this forum (thanks guys ) that the best way to go ahead with making charts is using the pivot table (note: i fully intend to use/intergrate axcel or execel features with my app) with some input from the user. is there any way of doing this without any complications my vb.net skills are quite rudimentary at best. From where i am ...Show All

©2008 Software Development Network