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

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

chintanpatani

Member List

CarlD
juanazo
Dan Ludwig
Joe Janson
jay1_z
Iron Architect
DrunkenSniper
good metric
Chris Mayo MS
j_welch2
Yan Y.
TokyoAnt
Spyros Sakellariadis
Oozle_Finch
Guy Pilk
delaysteam
appler
Sid Singhvi
Dumpster
absolute_magic
Only Title

chintanpatani's Q&A profile

  • Windows Forms XSL Editor

    I need to implement an xsl editor in my window forms application.  I tried to find a ready made solution with no luck...  why cant i use the exsiting editor the VS is using    I thought the entire VS was built using the .Net framework  Can anyone assist me  we have an editor that can do that: http://www.compona.com/wikiengine/WikiPageVie ...Show All

  • Visual Basic Copy and paste

    Ok. i have been trying to figure out how to copy and paste text in my VB programs. And it just does not want to work (copy and cut don't). any one have a sample or somthing I want to find the hilighted text and deal with it accordingly when i copy or cut. Sure you can. In my exmaple, the sub it fired from the Keyboard _keyDown event. In the event args, there's ByVal Sender as object.   Sender will be the actuall button. For example...   public sub main()     addhandler Textbox1.Keydown, Addressof Blah end sub Public sub Blah(ByVal sender as Object, ByVal e as EventArg ...Show All

  • .NET Development Visual Studio 2005 + Access, where to start?

    Hello, I have recently decided to use an Access file to store things my application may need to track, in the event that the SQL server it works with fails. I have created a template Access database, with two tables, and added it into my project (through add->existing item). In doing so, VS 2005 has helpfully auto-generated some code which I imagine simplifies working with my tables. I can see that it has created a mydbdataset.xsd, which branches out into mydbdataset.cs, mydbdataset.designer.cs, mydbdataset.xsc, and mydbdataset.xss files. However, I am finding that I am not sure how much has been done, and what remains to be able to acces ...Show All

  • Visual C# About solution folder - A bug or not?

    Solution folder's bug or not I tried VS2005 visual C#, I found a problem that I can't solve: After create a new windows Application project, then create Solution Folder, in the solution folder I create new windows user control library, after build, I can find the User Control in toolbox. I don't know why I've tried if I didn't put the User Control library in Solution folder, then the user control listed in toolbox. In vs2005 beta2, no this problem, I don't know if it's a bug for vs2005 If someone know the answer, please tell me it. Thanks and regards, Tiger.xing Hi Tiger - I'm reading this as your control doesn ...Show All

  • Windows Forms DataGridView Cell Dirty Value VB 2005

    The only way I have been able to get the dirty value of a DataGridView cell without leaving the cell is to execute CommitEdit in the CurrentCellDirtyStateChange event. The problem with this is if the value is invalid I cannot figure out how to replace the current value with the previous one. If I use CancelEdit, it replaces the current value with the original value. I do not want the user to have to start over completely if one character is invalid. For example, user enters 123z would like to replace with 123 dropping the z. CurrentCellDirtyValue would be nice. Is there a way to so this Thanks for your help Marc ...Show All

  • Visual Studio Team System Getting list of builds using Object Model

    Can anyone tell me if it is possible, and if so how, to get a list of builds for a project using the object model. I've had a look through the documentation and can't find anything obvious. Thanks, Michael Abhinaba, from my team, has a great blog and sample on this - http://blogs.msdn.com/abhinaba/archive/2006/01/12/511935.aspx . And hopefully we will document these APIs before next release. Thanks. ...Show All

  • Visual Basic Nedd help with prime factors do while loop

    I am trying to complete a homework assignment and I think I am doing something wrong in my do loop. Here is the code I have so far. The display I am getting does not make sense. Any advice Option Strict On Public Class Form1 Dim N As Integer Dim F As Integer Dim validNumber As Boolean Const INVALID_NUMBER_ERROR As String = "Must be a whole number greater than one" Const INVALID_ENTRY_ERROR As String = "Invalid Entry" Private Sub btnCalculate_Click( ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles btnCalcula ...Show All

  • Visual C# Extracting the summary tag at runtime

    Given a .Net object, I need to loop through it, printing out the summary tag information for each field/method, along with the "param" tag contents for each method parameter. Is there any way I can read the summary tag information for an instantiated object at run time Hi, just iterate through the methods of your object and for each method you iterate trought its parameters Using System.Diagnostics; Using System.Reflection; Type type = obj.GetType(); // go through every method of this object foreach(MethodInfo mi in type.GetMethods()) {     Debug.WriteLine("Method:");   &n ...Show All

  • Visual Studio Team System GetLatestVersion while compiling

    Hi all, we are 3 programmers working on the same project. Files are included in Team Foundation Server Source Control. Is there any option like "Check latest version while compiling" E.g. if Programmer A modifies a file and checks it in again, Programmer B could not notice this, right If B checks out the same file, a message is displayed that there is a newer file in Source Control available. That's good. But there is no such message when B just compiles the project. Wouldn't this make sense I don't want to press always "Get Latest Version" on the complete project as I might lose some of my modifications which haven't bee ...Show All

  • Smart Device Development Close CameraCaptureDialog

    Hi all, I need help because I'm developping an application in C# on a WM5.0 smartphone (C600). In this application, I use the cameraCaptureDialog to take picture. Here's the code : public partial class Form1 : Form { public Form1() { InitializeComponent(); CameraCaptureDialog cameraCapture = new CameraCaptureDialog (); cameraCapture.ShowDialog(); } private void menuItem1_Click( object sender, EventArgs e) { Application .Exit(); } } So, as you can see, when i launch the application, there is the camera capture dialog and i can take picture with it. And when I have ...Show All

  • Smart Device Development HttpWebRequest.GetResponse() times out with SSL connections, but works with normal connection

    Hello, the following code excerpt throws a Timeout web exception IF: a) the POST goes over an HTTPS connection, and b) the POST content (the byte array) is of a certain size (probably a few kilobytes) Shorter content (<1024bytes) works fine and reach the server. But an array of 30KB or larger never reach the server. The strange thing is that everything works like expected if the connection is an ordinary HTTP. No matter how large I set the timeout time, or whatever combination I choose for ContentLength, AllowWriteStreamBuffering or SendChunked, it always fails for byte arrays that are larger than a couple hundred bytes. I ...Show All

  • Windows Forms BUG: Focus for a MessageBox

    I'm pretty sure this is a bug of some sort, but if this is by design, then my suggestion would be to change it!  :p  If I have one TextBox on a form and have a method that handles the KeyUp Event.  In the event, I have code to check for if the user hit enter.  When they hit enter, it goes out to a table and& ...Show All

  • .NET Development Is there not one single example like this in the WORLD?

    Hi all, Examples are usually the best way to learn. So what I don't understand is why there isn't an example of what I need anywhere in the world! Or is there What I need is this: A *complete* (end-to-end) example of a database driven Windows application. It can not be based on datasets as they are slow and not built for object oriented programming, nor are they suitable for large applications. I need an OR mapper tool to help out. The example don't have to be complicated, I'd be happy with a typical order, order details form with a customer form. Here's a detailed list of what I need: -Windows Forms application in Visual Studio 2005 - ...Show All

  • Visual C# using "user controls" on webpages

    Hello All, I recently made a user control using c#. I want to know if it posible to put it in a webpage. Actually the problem is this user control is not registered on the system. I do not know how can I register this user control. I do not want to use IIS also. To summaries my problem: I want to put a user control in a web page directly. Hi, You can host Windows Forms Control within IE.  Here is a sample below and some links that explain the concept Sample with explanation: http://samples.gotdotnet.com/quickstart/winforms/doc/WinFormsIeSourcing.aspx More resources: 1.] http://www.devhood.com/tutorials/tutorial_details.aspx t ...Show All

  • Visual C++ Dll problem

    Hi all, not sure if this is the right forum, but here goes.   I have created a Win32 dll in VS2005 C++ express. I actual call this dll from VB.net. On my machine (XP) that I develop the VB app and compile the unmanaged dll, I can call functions using PInvoke no problem. I have just tried running the app on a Win 98 machine and I am told that it cannot find the dll, but the dll is right there in the same directory as my exe, just like on my development PC. I don’t know that much about the unmanaged world, of course this may be a .net issue!   Any comment would be appreciated   Cheers &n ...Show All

©2008 Software Development Network