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

Software Development Network >> Tom De Cort's Q&A profile

Tom De Cort

Member List

bryanedds
imanish11111
spshah
SweptSquash
Ron L
Bystrik
Allen Razdow
Broken
Price Brattin
JonAkaJon
NewbieDude
learningdba
A kid
Jakein2006
_Pero_
creaturita
Puntor
nonno
Rischa
explode
Only Title

Tom De Cort's Q&A profile

  • .NET Development Folder Integrity

    Hi All I want to performa Folder Integrity check on local machine. I have Several folders to guard on a local machine. I dont want anyone to temper the contents of this folder. I want my program to generate a Hash Code of the folder when copying the folder from the Sync Server. When my programs tries to access the Folder content , it should calculate the Hash again and check it against previous value. Computing Hash value for each file is not required, As a folder may have number of files ranging from 1-10. Any help in this regards will be highly beneficial. Thanks Sumit over to you buddy NoBugz :-) im out of ideas for now but will be sure to post if I find any just ...Show All

  • Visual Studio 2008 (Pre-release) GridView padding??

    There seems to be some Padding setting somewhere in the Columns when using a GridView. Where can I change this setting XAML to reproduce (note the white padding between the red columns): < Window x:Class = " XAMLSandbox.Window4 " xmlns = " http://schemas.microsoft.com/winfx/2006/xaml/presentation " xmlns:x = " http://schemas.microsoft.com/winfx/2006/xaml " Title = " XAMLSandbox " Height = " 300 " Width = " 300 " > < Window.Resources > < DataTemplate x:Key = " dataTemplate " > < TextBox Background = " Red " Width = " 100 " Text = " {Binding Mode=OneTime} " /> </ DataTemplate > </ Window.Resour ...Show All

  • SQL Server debug in sql server 2000

    Hello guys! I am trying to debug a sql procedure inside query analyzer but I can seem to step into each line. When I run the procedure it doesn't stop in the breakpoint I set. By the way I am running in a client pc.. Please help guys! ...Show All

  • Visual Basic Default(s) for replacements

    Is it possible to have multiple defaults for a replacement  For example, click a button while on the green replacement field and the second default is shown. I am using VS2005 std, win 2000.     There is currently only one default replacement allowed for the markers. Also, adding snippets is not currently supported in the xml editor. I will forward your suggestions on to the the teams. Best Regards ...Show All

  • Windows Forms MDI and TopMost...

    I have an MDI Form that has 4 child forms that have TopMost = true; However when I set TopMost = false; These windows still stay on top within the MDI Form. Is there any other setting that could cause these forms to stay on top Thanks for your help! Hi, you will probably get a reply to this if you post it in the WinForms forum: http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=8&SiteID=1 Thanks Mark. ...Show All

  • Visual Studio 2008 (Pre-release) Using Styles in WPF

    Hi I using a Tabcontrol and binding the items dynamically to a List of strings. I have written two different Styles in my Application Resource, Is it possible for me to use the first Style for the first two TabItem in the control and the Second style for the rest of the tabs that are created in the control. hi Iam tring to directly bind the "ItemSource" property of the Tabcontrol to a list of String so how to set the style's of the items...... Could you help me out with a code snippet Regards Ragu ...Show All

  • SharePoint Products and Technologies Sharepoint Workflow and Workflow Foundation

    Hi all, I am new to Sharepoint. Is there any difference between Workflow engine in sharepoint with Windows Workflow Foundation Or they are actually the same thing. Please help with my confusion. Thanks in advance. Same thing. WSS 3.0 is one of many MS products that will be using WF (from the .Net 3.0 Framework). The next version of BizTalk is being rewritten using WF. There are several MS Webcasts that discuss this. ...Show All

  • Commerce Server How to search the UserObject by a custom property

    Hello, I have extended the UserObject with a custom property called 'PartnerId' (type of string). With Commerce Server Manager I enabled the Physical attribute 'indexed' in the DataSource section. In the Profile Definition Section I checked the 'searchable' option. I have been able to assign value to this field programmatically. This means the property is configured properly. With the customer and order manager I am also able to search the user by this PartnerId. When I try to get the user profile by partner id I keep getting errors. This is the syntax that I use to get the profile: _UserProfile = csContext.ProfileSystem.GetProfile("GeneralInfo.PartnerId","ABCD1234","UserObject") ...Show All

  • Visual Studio Tools for Office Outlook: MAPI fields versus User Properties

    Hi, I want to improve an outlook addin which is using mapi fields (a lot) and this is generating abnormal behaviors in outlook, so now I'm in doubt to quit all use of mapi fields fo User Properties but I need some recomendatios or comments about using "mapi fields vs user properties" (or viceversa). Thanks, Mauricio. When you work with MAPI properties, you need to make sure you release items promptly so that you don't get conflicts between an item still held in memory and the item the user sees in the UI. It may even be necessary to force GC.Collect. ...Show All

  • .NET Development using statement on SqlDataReader

    Hi all, if I am to use the 'using' statement on a SqlDataReader where the resultset then gets passed outside of the method in which it was executed, will the 'using' statement still clean up the resources (close, dispose etc) although the SqlDataReader ResultSet gets passed out of the method What I currently have is below, but am not sure whether making use of the 'using' statement on the SqlDataReader will actually clean up its used resources. public static SqlCeDataReader ExecuteQueryGetDatReader(SqlCeConnection objSqlCeConnection, string strQuery) { SqlCeDataReader objSqlCeDataReader; try { using (SqlCeCommand objSqlCeCommand = new SqlCeCommand(strQuery, objSqlCeConnection)) { objSqlCeCommand.CommandType = Comma ...Show All

  • Visual C# Dumb question

    Can anyone tell me whatwould be needed here to set the value to '0' zero and/or format the double. public double F04 { get { return this .Field04; } set { this .Field04 = value ; } } <newbie > Ok I get it Now I am not sure if you can directly display a double value as 0.00 the problem is Double is not an object it is a primitive type which means it is not a class rather a Struct. there for it will not have null rather 0 as a default value. But there is good news you can work around this here is how your current Propertry is like this double Field04; public double F04 { get { if ( this .Field04==0) th ...Show All

  • Software Development for Windows Vista Getting compressor color depth capabilities

    I was wondering if it were possible to get the color bit depths that the system codecs supported. (i.e. some only support 256 colors, others only 24-bit) Upon enumerating through all the system codecs via hr = pSysDevEnum->CreateClassEnumerator(CLSID_VideoCompressorCategory, &pEnumCat, CDEF_DEVMON_CMGR_DEVICE | CDEF_DEVMON_FILTER); You can get the name of the compressor using the IPropertyBag interface. You can also get the keyFrame, quality and dataRate capabilities via IAMVideoCompression interface. Is there a similar interface to get supported bit depths The closest thing I can think of is reading the AM_MEDIA_TYPE of the output pin(s). Note that some compressors don't report output media types ...Show All

  • SQL Server Mix and Match Rows

    In the trading (stock market) industry there is a practice of rolling up (merging) multiple trades into a single trade in an effort to save on ticket charges. The way this is done is performing a SUM() on the quantities and calculating an average price. (Average price is the SUM(Qty * Price) / SUM(Qty). So, given : Qty     Price 20      $5 20      $10 You get: 40      $7.5           -- 20 + 20 and SUM(20 * $5, 20 * $10) / SUM(20 + 20) Here is my dilema: If given a set of trades, I need to loop through them and check every combination to determine which one matches the expected ...Show All

  • Windows Forms Settings: Select a Type Dialog Box

    What determines what choices you have to choose from in the "Select a Type Dialog Box". I thought the choices would coincide with your project's references, but i have found that it does not. Any ideas This dialog is reachable by  1) Right clicking on your forms project, and choose properties.  2) Choose the settings tab  3) In the Settings datagrid click the "Type" Drop Down and choose browse(all the way at bottom of list).  **EDIT: BTW the I am trying to get Microsoft.Office.Core.msoBarPostion as a Type and I can't get Microsoft.Office.Core to show up in the dialog even though it is a reference in my project.  This Problem is not specific to Microsoft.Office.Core because i have seen this with o ...Show All

  • SQL Server Permission error when trying to set parameters of a server report

    Hi There, I am using SQL Server Reporting Services and generating reports and have them deployed on a report server on Machine A. I have an asp.net web application hosted on MAchine B which has a report viewer control which is used to display a predefined report that is already published on a Reporting Services report server except that it passes a set of parameters for the report. I get this error... The permissions granted to user 'Bla.." are insufficient for performing this operation. (rsAccessDenied) when I try to set the parameters..like this.. param[1] = new Microsoft.Reporting.WebForms.ReportParameter("EndDate", DateTime.Now.ToShortDateString()); param[2] = new Microsoft.Reporting.WebForms.ReportParameter(" ...Show All

©2008 Software Development Network