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

Software Development Network >> KevinBurton's Q&A profile

KevinBurton

Member List

scottydog
Mazmo
kanna215
Yazan R.
Tailor
BJHop
robinjam
hege
TerryYoung
Glyn Harper
VSFW3
Wulfe956
Attila Fogel
SHBEHM
Twice_Resurrected
mkamoski
Alcide
ShrikantBijapurkar
Rush hour
vimalbharathi
Only Title

KevinBurton's Q&A profile

  • Visual Studio Team System MS Project versions?

    Does MS Project have some sort of versioning mechanism An .mpp was created by pulling work items for a query and then saved to a desktop. after modifying and saving the changes, upon reopening the start date and first item in the project plan have incorrect dates. Once the document was sent to me and everything connected to TFS, the dates were what they should have been. I'm just curious how I can access the same .mpp and see different dates than a coworker for the same work items. We are both running MS Office Project Pro with SP2 and are both connecting to the same TFS site. Yes, I sent the .mpp back to the person where the .mpp originated and he made the revisions and then published. Ever ...Show All

  • Windows Forms [c#]out of mind with cell formatting

    Hi again :( Im still having problem with the datagridview. All i need, is to format a number like "1" to "1.00" in some cells. Im trying this using CellParsing, CellFormatting and CellLeave. On designer i've already set "default cell style format" to "t". Before posting, i've already search the entire forum, but i've not found a solution for my problem. Any helps Thx. Hi :) First of all, thank you for help. This code doesnt work for me :( Here is my code in Cell_EndEdit function (because i need a formula column) private void dgv_CellEndEdit(object sender, DataGridViewCellEventArgs e) { int last column = 3; DateTime dt1, dt2; bool isDt1, isDt2; if(dgv.Rows[e.Ro ...Show All

  • Software Development for Windows Vista Get data from the workflow

    What's the recomended approach to get data from workflow I have handleExternalEventActivity to push data into the workflow I have call callExternalMethodActivity to push data into the host. What if I need from the host to get some data of the workflow I could use one handleExternal event and then call a method on the host through callExternalMethod. But I'm asking if there is a better, and if possible, synchronous approach to this problem Something like myDataService.GetMyDataFromWorkflow(instanceID) ... I'd use a custom tracking service to manage this. It makes it easy to do just what you want, which is ask a service for the properties on a given workflow instance ID. I've got a sample pos ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. TGA files using Fireworks

    Hey there guys, I am just having a problem I am trying to edit a TGA file in Fireworks but I can not save it as a TGA file. Dose any one out there know fireworks well enough to help me out Thanks, OmegaJ I don't think it's supported as an export format. Which is too bad! I really like fireworks. http://www.adobe.com/cfusion/knowledgebase/index.cfm id=tn_14318 I use PNGs anyways. If you use the content pipeline, it will convert the texture to something easier to read. ...Show All

  • Windows Forms How can code short cut for CTRL+Enter in VS 2003.

    I am using Visual Studio 2003 and wanted to provide a menu short cut key as CTRL+ENTER key. I am not seeing this key by default at System.Windows.Forms.Shortcut. How can assign CTRL+ENTER key in menuitem Thanks in advance. Please be more specific with your post next time so people can better help you. A more suitable title or question would have been: "How do I assign a shortcut key Ctrl + Enter to a menu item programmically since the Enter key does not exist in the list of shortcutkeys in the properties window " Quote: System.Windows.Forms.Shortcut When you say this, it may make people think you are trying to do this programmically already, and not in the properties tab. Good luck. ...Show All

  • Software Development for Windows Vista display object problem

    Having a problem in vista using the IDataObject::GetData() method when i insert an object into my application it displays fine in xp but in vista it is not displayed, until i refresh the screen. do i just need to call IDataObject::GetData() again XP calls this... IDataObject::GetData() IDataObject::GetData() IDataObject::GetData() Vista only calls this... IDataObject::GetData() any help is great thanks! Herm ...Show All

  • Visual Studio Team System Problems displaying newly created & renamed iterations

    I am able to create & rename iterations when right-clicking the project & selecting Areas & Iterations, but the changes I make aren't apparent in the Classification frame when creating or modifying a bug/task etc. We are developing our TFS structure and it was working fine, but I needed to delete all projects and recreate them in a parent/child structure, then import all of the existing work items back into the new project. - Greg Try refreshing from the Team explorer after you make changes in the areas & iterations or do the following ..run the warehouse controller manually to get the update... Start ->Run ->inetmgr under website...select team foundation server ..select ...Show All

  • Visual Studio Team System TFS: Source Code

    HI, I am using TFS/TS 180 days trial version and created a team project on TFS Server. I am unable to create a source code workspace. i logged into my machine as \domainuser and have [Sever] Team Foundation Administrator rights. i also have admin rights on TFS server in the same domain. thanks! Sneh Do you have rights on your local box If you are apart of Team Foundation Admin Group, on the server level, you should have perms. Thanks, John ...Show All

  • Visual Studio Express Editions My form does not respond?

    Waht should I do if my form does not respond I have a button on my form that has an email code under it, so whenI press it, it sends email. The only problem is that when I press it, my for says "(Not Responding)" at the top. Then I get an error that says the operation has timed out..how should I fix this In order to evaluate an indexed property, the property must be qualified and the arguments must be explicitly supplied by the user. "The operation has timed out." " at System.Net.Mail.SmtpClient.Send(MailMessage)" This is what it said when I tried running the code again in a BackGroundWorker I'm using the same code as above...what should I fix ...Show All

  • SQL Server Using CTE in data paging

    I explore a possibility of using Common Table Expression (CTE) instead of temporary table in data paging. But the problem is that it looks like I can reference CTE only once in my script. I need to return data for a current page as well as the row count for entire selection. Here is my script: with names(row_num, first_name, last_name) as ( select row_num = row_number() over(order by last_name, first_name), first_name, last_name from contacts where last_name like 's%' and first_name like 'm%' ) select row_num, first_name, last_name from names where row_num between 41 and 60 -- 3rd page order by row_num select count(*) from names go It selects 20 records, however it displays an error when it tries to execute select count(*): ...Show All

  • Software Development for Windows Vista Multi-valued activity parameters?

    What is the best (only ) way to implement a multi-valued activity parameter ...as a string of delimited values or XML   Is there a better approach Is something like the following possible <ns0:ListItem x:Name="ListItem_942c79b7_5a65_4fad_affb_9cd0e362cd84_4" ID="4"> <![CDATA[ "0" "ID" "Counter" "4" "1" "Created" "DateTime" "9/9/2003 10:34:55 AM" "2" "Author" "String" "Administrator" "3" "Modified" "DateTime" "9/9/2003 10:34:55 AM"]]> </ns0:ListItem> Or conversely, given the above machine-generated XML, is it a valid XOML file (that can be loaded with the default WF loader) What happens to the embedded element text (i.e. the CDATA) Will it vali ...Show All

  • .NET Development unable to load dll using PInvoke

    Hi, I am having a problem trying to load a dll. I have an external peice of hardware called the MTC Express. It comes with a API in dll format. Im using PInvoke to try to call function in the dll from my c# application. My code looks like this. [ DllImport ( "C:\\ttxmtc.dll" , EntryPoint = "MTC_GetAPIVersion" )] public static extern bool MTC_GetAPIVersion( char [] buf); public static void Main() { char [] buffer = new char [128]; bool b = MTC_GetAPIVersion(buffer); } When I call GetAPIVersion, I get the error Unable to load DLL 'C:\ttxmtc.dll': A dynamic link library (DLL) initialization routine failed. (Exception from HRESULT: 0x8007045A) I've r ...Show All

  • Software Development for Windows Vista .Net 2.0 Context Menu handler for WinExplorer not opening target Application in Vista

    http://www.juksoft.com/jukftp/downloads.asp file=JukFTPver11.exe Details: -application consists of shellExtenstion.exe and application.exe which are both installed via installation program -developped with .Net 2.0 on WinXP Sp2 -testing on Windows Vista Final -application.exe runs as intended when opened via the .exe file -context menus are being displayed as intended in WinExplorer -upon clicking context menu, a text file is created and the application.exe is to be run using the created file as arguments -application.exe location is stored in the /App Paths/ registry node (HKLM/Microsoft/Windows/CurrentVersion/App paths/) which is created during installation, this string is then used by the context menu to open the application.exe -other ...Show All

  • SQL Server AS2005. Some questions about AMO behaviour.

    If the DimensionAttribute.EstimatedCount is set and Dimension.Update is called, should I call Database.Update Should I call Dimension.Update for every dimension or I can only call Database.Update If the Partition.EstimatedRowCount is set and Partition.Update is called, schould I call MeasureGroup.Update What will be used at aggregation desing Partition.EstimatedRowCount or MeasureGroup.EstimatedRowCount What Field schould be set The Update() method saves the object's properties and collections, except the major children. For example, cube.Update() will save the cube, except its measure groups, perspectives etc; dimension.Update() will save the dimension, except the dimension permissions (its only majo ...Show All

  • Visual C# Converting date to system current date time format

    Hello Can somebody help me for below problem In my .Net application I am using vb component having one method which accepts DateTime as a parameter. This value will be inserted into the database. The value to be passed to this method will be taken from some other database. Before passing this datetime variable I want to set the date format as a current culture system datetime format with ShortDatePattern. I used the below code to get the system short date format and to set that format to DateTime variable but the format is not getting changed to ShortDatePattern. Code :- string LstrSystemDateFormat = System.Globalization.DateTimeFormatInfo.CurrentInfo.ShortDatePattern; string LstrDateString = "15/01/2007"; DateTime Effec ...Show All

©2008 Software Development Network