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

Software Development Network >> Dominique Gratpain's Q&A profile

Dominique Gratpain

Member List

SeeBee
C13
Tim Golisch
I_P_3_LEE
chevoldavis
RMarar
DarrenONeill111
SergeVV
VFP avid fan
LeonardLay
Eduardo D
drk9999
sugar1985
thambi
Lorenzom_MSFT
John2006
Rhonda MC
Annick
Peterssitje
Corny
Only Title

Dominique Gratpain's Q&A profile

  • Software Development for Windows Vista Database monitor activity???

    Hi, I was wondering if workflow has something similar to event monitoing. Something like Filewatcher and MSMQ event subscription but on database. what i want to do is, if there is a change in a table's data, i want to kickoff a new workflow instance, but I don't know if I should use timers to poll the database. thanks, Hiten The responsibility for that would reside with the host application, and there is no built in Workflow functionality for that. In your instance, you could have a trigger on the table in question, and this could signal the host application to start the appropriate workflow. Th ...Show All

  • SQL Server SQL 2005 & personal site wizard

    Hi, I used the personal web site starter kit as a basis for a new site. When I touch the "Register, login" links, something goes off and creates a sql2005 database in the system_data folder - which is helpful I guess, (but was it created by the IDE, was it the framework ) however my web host does not support sql2005 so I want to use my existing sql2000 database. I edited my web.config to provide the sql2000 connection string in the membership section, deleted the database files and tried again, it appeared to ignore the information in web.config, and created the sql2005 mdf again. I figured I'd try and install the membership cat ...Show All

  • SQL Server SQL Server Service Broker Admin Tool for SQL Server 2005 RTM

    Back in July I released the (then) latest version of SsbAdmin. For you who don'r know what it is; it's a tool which allows you to graphically administer SQL Server Service Broker. I have now uploaded a new version which is compiled against the released versions of SQL Server 2005 and .NET 2.0. You can download it from here : [0]. After download, un-zip to some directory and read the README.doc file. [0]: http://staff.develop.com/nielsb/code/ssbadmin.zip Do you plan to give out the source as well I could give a shot at adding Remus' import/export service listing scripts to that. ...Show All

  • Software Development for Windows Vista DIrectSHow or WMF9 is best for streaming video

    Hello, I am currently assigned with a project to render video from a network camera.I am using C# . I an asked to develop an application which is very efficient.Also I need remote recording of the video. I am getting the data as mpeg-4 format from teh video server attached with the camera. CAn any body help me. For video capture I would probably look at DirectShow. However, I have been working with directshow a lot lately, so maybe I'm biased. If c# is your language, you may want to look at http://DirectShowNet.SourceForge.net ...Show All

  • Visual C++ unable to add any item to the toolbox

    The environment: VS2005 (final version). Win2K. I just started working with this new VS2005 in bits and pieces. Today I realized that the toolbox was empty and it does not allow anything to be added to it. According to HELP, The Choose Toolbox Items dialog box displays tabbed panes listing components that are recognized on your local computer. You can use the Choose Toolbox Items dialog box to select or remove components, and to add items to the Toolbox or remove items from it. To open this dialog box, select Choose Toolbox Items from the Tools menu, or right-click on the Toolbox and select Choose Items from its shortcut menu And I ...Show All

  • Windows Forms cupture datagrid doubleclick and keypress

    I have tried out various code on capturing keypress and doubleclick events on the datagrid. But the problem is when you add the keypress support, the doubleclick won't fire out.  here is the code  for trapping double click Dim grdColStyle1 As New DataGridKeyTrapTextBoxColumn grdColStyle1.MappingName = "Acc_Curr_Balance" grdColStyle1.HeaderText = "Account Balance" grdColStyle1.Width = 225 AddHandler grdColStyle1.TextBox.MouseDown, New MouseEventHandler( AddressOf TextBoxMouseDownHandler) AddHandler grdColStyle1.TextBox.DoubleClick, New EventHandler( AddressOf TextBoxDoubleClickHandler) Private Sub TextBoxMouseD ...Show All

  • Smart Device Development MEDC 2005 - Where to find DCS (Device Command Shell) Tool for Visual Studio

    During the talk "CLI444: Power Tips and Tricks for Windows Mobile Device Developers" by Larry Lieberman he demonstrated the DCS (Device Command Shell) Visual Studio tool. He says it can be found on gotdotnet but I'll be danged if I can find it. Does anybody here have any idea where I can get it Dale Any hints on where to find it now that GotDotNet is phased out ...Show All

  • Visual Studio Express Editions Database search

    Hi there, I am new to VB Express. I have a project that requires finding 2 fields in a mdb database. The search key is a variant rather than a text box. In the project I modify input from a text box. The resulted variant is the search key for retrieving 2 fields in the variant record. The database is structured as follows: Location Identifier Field1 Field2 Alocation ABC 123 456 Blocation DEF 789 987 Clocation GHI 654 321 The search key is the identifier variant which is processed from a text field. I watched the tutorial but they automatically associate database fr ...Show All

  • Smart Device Development define xml-file & path

    Hi there I just created a sample Project (.net CF for Windows Mobile 5.0 PocketPC) where I bind a XML to a DataGrid, and now I have the following problem: I dont know how to define the file-path in the Code, it will come a FileNotFoundException My definitions i tried: xmlFileName =" \\..\\..\\AccountingData.xml " ; xsdFileName =" \\..\\..\\AccountingData.xsd " ; ...="D: \\ VisualStudio Projects \\ Mobile\PocketAccaunting \\ PocketAccaunting\\ AccountingData.xml " ...="D: \\ VisualStudio Projects \\ Mobile\PocketAccaunting \\ PocketAccaunting\\ AccountingData.xsd " ...Show All

  • Visual Studio Crystal adds .00 to SQL Server integers

    Hi all. I am new to CR and using CR for Visual Studio 2005. I have a report getting data from SQL Server. I am trying to concatinate 3 integer fields into a date using an unbound string field. Each date field has one part of the date, i.e. month, day and year(from an old Databus file). Crystal is adding .00 to the numbers when they print in the concatinated field so a month field containing 12 displays as 12.00. An entire date would look like 12.00/25.00/99.00. If I simply add the field to the report by drag and drop, it displays as 12. Any idea how I can get rid of the .00 You may be asking why I didn't convert the 3 date fields int ...Show All

  • Windows Forms How to do form authentication and authorization in my WinForms app?

    I am wanting to use the standard way of authenticating and authorizing a user for my Winforms app. Can someone point me to code that implements the above for a Winforms application you should look in the QuickStarts examples in teh Framework SDK---CommonTasks---if you want Active Directory auth -- there is example there ...Show All

  • Visual C# Connecting to a shared folder on another Machine

          I'm developing a Windows Service.  The service needs to write an xml string to a file and drop it in a shared folder on another server.  What is the best way to establish a connection to the shared folder on the other machine Have you tried just connecting directly to the share itself. For example shows how to check if a file exists on a share; File.Exists("\\MyServer\\MyShare\\Myfile.txt");   ...Show All

  • .NET Development How do we access <satelliteassemblies> config section in code?

    v2.0 Web.Config Does anyone know how to read and write programmatically this out, besides resorting to the XML Dom: < configuration > < satelliteassemblies > < assembly name = " App_GlobalResources " > < culture > fr </ culture > < culture > de </ culture > < culture > pt </ culture > </ assembly > </ satelliteassemblies > </ configuration > I can't find specialized classes and I can't get any of these general ones ConfigurationSectionGroup ConfigurationSectionCollection ConfigurationSecti ...Show All

  • SQL Server SSIS Data sources and destinations

    Can someone point me to a comparison between the OLE DB data source and the Data Reader Data Source   We are starting to investigate SSIS and have stumbled through some pain points by choosing one or the other. Additionally, I found that one can not use the SQL Server Destination unless the package is actually running on the Server hosting the SQL Instance.  This seems like we are moving backwards in time.  We have been able to run DTS packages on a client machine that doesn't host either source or target data sources. The SQL Server Destination seems like the most intuitive destination to use if my target is a SQL Se ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Vertex Tangent in left handed

    I'm working in left handed corrdinates and calculating the tangent to do normal mapping transforming lights to tangent space The result is working wrong as it seems that one axis is flipped (the left side of a mesh is being iluminated as should be the right side). So I am guessing that I have a mix with the coordinate system in calculating the tangent for the vertex or in the tangent trasnformation matrix. 1) Calculate tangent in left handed coordinates VECTOR3 GetTangentSpaceVector( const VECTOR3& position1, const VECTOR3& position2, const VECTOR3& position3, const VECTOR2& uv1, const VECTOR2& uv2, const VECTO ...Show All

©2008 Software Development Network