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

Software Development Network >> Mehmet Metin's Q&A profile

Mehmet Metin

Member List

Ross Ridge
gandaliter
Sadegh
JohnCP
perrakus
Chompin
eosull41
cookieCutter
Barrtee.s
Steve Stilwell
MielieSpoor
John-at-WSRB
ShaunWilks
atreus769
Raghu12
metro16327
WTHUGHES
vibha504
inge_03
Shirts
Only Title

Mehmet Metin's Q&A profile

  • Windows Forms Contex Menu with image.

    How to add an image in Contex Menu with specific menuItem in Contex Menu. See these links: http://www.codeproject.com/cs/menu/nicemenu.asp http://www.codeproject.com/cs/menu/menuimage.asp http://www.codeproject.com/cs/menu/MenuExtender.asp ...Show All

  • Visual Studio Team System Can you programmatically checkin a file to source control with a specified date?

    We are looking at importing some RCS based projects into TFS.  We can grab each version and it's history via the command line and then pump each version into TFS.  However the dates in TF won't reflect the actual dates of the checkin in our other version control system.  How would you go about doing this   BTW, in this case the old system never supported branching and we don't care if we lose labels in the transfer.  So other than the date issue this looks to be a fairly simple way to import our history. This is a pretty tough problem.  The issue of "alterting the past" cre ...Show All

  • SQL Server Problems with using "Patch" in the XML task

    I get the following error when trying to patch an XML document with a diffgram that i just created. The XDL diffgram is not applicable to this XML document; the srcDocHash value does not match Complete error output: SSIS package "Package.dtsx" starting. Warning: 0x8002927A at XML Task, XML Task: The two XML documents are different. Error: 0xC002F304 at XML Task 1, XML Task: An error occurred with the following error message: "The XDL diffgram is not applicable to this XML document; the srcDocHash value does not match.". Task failed: XML Task 1 Warning: 0x80019002 at Package: The Execution metho ...Show All

  • Visual Studio Team System team build (msbuild) question

    i have a team project. at local machine. when build, it create a bin directory and drop .dll file there. when i run team build, it doesn't create a bin directory and drop .dll file there. i need this bin with .dll. how can i done this in msbuild 1) OutputPath and OutDir property in your csproj files is responsible for specifying the location. 2) Inside team build, we are redirecting the output assemblies by overriding the OutDir property. We pass pass this property to msbuild task in corecompile target in (microsoft.teamfoundation.build.targets file). This is happening for both desktop and nondesktop ...Show All

  • Windows Forms Using seletedRTF in rich text box to build tables.

    I am using a rich text box to populate sections of a document from a database.  I am also dynamically building tables with rows and cells with in the rich text box.  Everything seems to be working well except for sentences that are bigger than the cells.  Instead of the cells expanding to fit all of text, it allows the text to run out of the cell.  My question is, is there a way to have the rtf cell expand to fit all of the text   I opened the rtf code in WordPad and it worked fine, but it still doesn't work in my rich text box project.  Any ideas of what I need to do to make it work in ...Show All

  • Visual Basic Blair Allen Stark

    Here is the problem I am working on. It asks me to use the method CalculateCharges, but I don't fully understand how to do this or how it works. I would be grateful for any input. Lab Problem III A parking garage charges a $2.00 minimum fee to park for up to three hours. The garage charges an additional $0.50 per hour for each hour or part thereof in excess of three hours. The maximum charge for any given 24-hour period is $10.00. Assume that no car parks for longer than 24 hours at a time. Develop a console program that calculate and displays the charges for each customer who parked a car in this garage yesterday. ...Show All

  • Visual C# diffrence on console app and win app

    How can i call a method in win app.... for example in console app i can do this: public static double Value() { double num; num=double.Parse(Console.ReadLine()); return num; } public static void Main() { double num; num=Value(); } but in windows app how can i do thar: eg: private void btnMulti_Click( object sender, EventArgs e) { double num1, num2; num1 = double .Parse(txtNum1.Text); // how can i call a method for this num2 = double .Parse(txtNum2.Text); Calculator multiplication = new Calculator (num1, num2); multiplication.SetMultiplication(); lblTotal.Text ...Show All

  • Visual Studio Express Editions How do I get mathematics functions

    I have just downloaded Visual C# Express. I find that it has no mathematics functions and many others missing such as sleep(). Can someone tell me how I get these. I have looked in the MSDN library at System.Math and can see no way to download the mathematics functions. Is this something that is missing form the Express edition You have the Math class http://msdn2.microsoft.com/en-US/library/system.math.aspx sleep() is a method on the Thread class, Thread.Sleep() http://msdn2.microsoft.com/en-US/library/system.threading.thread.sleep.aspx ...Show All

  • SQL Server Feedback regarding Feedback on the Feedback Center

    Just a note to the MS guys... I'm fully supportive of the product Feedback Center initiative and the subsequent withdrawal of sqlwish. Problem is, if nobody ever gives us feedback on the things that we submit then it simply is a glorified version of sqlwish with no added value. I apologise if there are plans afoot to address to offer feedback to the things we put up there but I (and others) have been freely submitting bugs and suggestions for a few months now without hearing anything back and I'm beginnign to wonder why we bother. Even a simple "This is a good idea and will be considered for Katmai" or "This is ...Show All

  • Windows Forms MIDI

    What kind of support (if any) does VB .NET provide for writing MIDI applications  I'm not so interested in playing a MIDI file as I am in generating one. It offers all that you need such as the IO namespace.  I'm not sure if there's any drag/drop components, so you're going to either have to use google.com and buy some books ...Show All

  • SQL Server SQL Server Express uninstallation

    I am trying to uninstall SQL Express beta so I could install the latest version but unfortunately I cannot remove it. I tried going through my control panel but it wasn’t there, I tried using the uninstaller from Microsoft.com ( http://msdn.microsoft.com/vstudio/express/support/uninstall/ ) but it gave me error messages like saying …” The setup has encountered an unexpected error in datastore. The action is RestoreSetupParams. The error is: Failed to read property "Installds" {"MachineConfiguration", "",WEBDEVELOPER"} from cache Unable to write property into cache:IsClustered Unable to write property int ...Show All

  • Visual Studio Stack walking using the new DIA SDK

    I’m trying to provide myself a call stack dump whenever my code causes an exception, and I want to use the DIA SDK rather than ImageHlp API. Ie I want to see the callstack when my program crashes, rather like the callstack is shown in VisualStudio, except I’m not using an out of process debugger – I want to do this in my own app. The DIA SDK provides some COM interfaces to support what I want to do, but unfortunately there is no documentation. All I know is that IDiaStackWalkerHelper and IDiaStackWalkFrame must be implemented by the client. As to exactly how, remains a mystery! And this is where you step in! Let me give you ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Performance problem with Texture.FromBitmap

    I reduced program boot time (when running from within the IDE) from 12 seconds to less than 1 second by re-writing Texture.FromBitmap using unsafe code.  For me it was easy because I'm only using 32 bit textures and 32 bit bitmaps.  It would be nice to see this function optimized in future releases of the SDK.  BTW, Texture.FromStream has the same problem. -Jeremy That's what I experienced too -> http://www.gamedev.net/community/forums/topic.asp topic_id=357621 It's only really slow, when you run with debugging. That was not the case in VS2003 though. ...Show All

  • .NET Development WSE3 Kerberos Security

    Hello, I'm writing an application using WSE3. The messaging is great. I have tried to secure my web-servie using KerbrosSecurity. I having difficulty with this: The OS i'm running on is Windows XP SP2. I have configured both the client and the service to use policies which use Kerberos. When the request (contain the kerberos encryption and sign) reach the service, the service thorw an "invalid token exception: bad username or password". I have tried to add "Act as part of operating system" in the local security policy and everything. The only thing that seem to work is running setspn.exe utility. I'm running inside a domain (single domain). ...Show All

  • Visual C# .Net month calendar

    hi, I've written the DateChange event of .net month calendar control, and shown a message box, when i change date through Month Navigation arrows, it shows the non-ending messageboxes recursively. private void monthCalendar1_DateChanged(object sender, DateRangeEventArgs e) { MessageBox.Show(e.Start.ToString()); } Hi I have tested your code and you are right, the solution will be. Replace the Date_Changed event Handler in the FormName.Designer.cs like :- ...Show All

©2008 Software Development Network