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

Software Development Network >> Harshal Kherde's Q&A profile

Harshal Kherde

Member List

jetas
KrankyKat
John Vottero
Peter McEvoy
Frederic Enesys
alevy
jay K B
DotNet WizKid
RtB
Andrew DeVaughn
Dave Beer
HugoLeiva
Jonathan Caves - MSFT
phfjeld
NickMalloy
Apek
Gordon Pollokoff
CleverHans
Luis Neves
ISW
Only Title

Harshal Kherde's Q&A profile

  • SQL Server MS Access + SQL2005

    Hello, Don't know why but i can't access SQL2005 databases with MsAccess. When i try to connect, it stay disconnected. With Beta 2 it work... Any Ideas Thanks ...Show All

  • Visual Studio Class Details window (MSDN bug ID: FDBK24857)

    I'm having a problem with the Class Details window. Click on the following link to see the corresponding bug details: http://lab.msdn.microsoft.com/ProductFeedback/viewFeedback.aspx feedbackid=914d3c3f-efdd-41ed-8c6c-da5ed91f48db When I click on a class in the Class Designer, the Class Details window shows up, docked at the bottom of the screen. But when I click inside the Class Details window, it dissapears! Every time. I tried to reset all my settings, tried all different possible settings and even re-installed VS 2005. No luck! Please help C#-settings, Class Diagram added to a ...Show All

  • Windows Forms How to determine mouse click coordinates when clicked in a certain portion of the titlebar

    I've drawn an icon in the caption area of my form. It appears to the left of the close button. I need to be able to find out if the user presses a mouse button over that icon. Any help would be really appreciated!!   Snickel65 wrote: I'm already that far, but I cant figure out the mouse coordinates, which are in the message's LPARAM parameter (somehow). Also, how do I convert the mouse coordinates to a particular region of the title bar lParam is a POINTS object that holds the x,y co-ords. You need to use DllImport to define the POINTS structure for use in C#. Note that the ...Show All

  • Windows Forms DataGridTableStyle

    We use DataGridTableStyle at DataGrid in VS.NET 2003. But I want to using DataGridView instead DataGrid in VS.NET 2005 and there isn't DataGridTableStyle in DataGridView. What am I do design for DataGridView Check out the DataGridView FAQ: http://www.windowsforms.net/Samples/Go%20To%20Market/DataGridView/DataGridView%20FAQ.doc Specifically you just add columns to the columns collection and set properties on the columns. The DataPropertyName property (e.g. DataGridViewTextBoxColumn.DataPropertyName) identifies the column that the grid is bound to. Hope this helps!  -mark DataGrid ...Show All

  • Visual C# Printing A HTML Page In The Web Browser Control and Removing The header and Footer

    I simply just navigating my browser control to the html page I want to print then simply just printing as follows browser.print(); and it's coming out great but its printing a header with a page number and footer with file location and the date. I've tried everything to print it with out the header and footer but can't figure out anything. Any ideas ...Show All

  • Visual FoxPro VFP free tables in compressed folders

    Will Visual FoxPro free tables work fine on compressed drives or in compressed folders I am talking about the NTFS compression found under advanced attributes. I have several folders with hundreds of .dbf files used in out VFP app. I would like to compress these folders to save disk space. : Will Visual FoxPro free tables work fine on compressed drives or in compressed folders I am talking about the NTFS compression found under advanced attributes As far as I know there are no issues. compression is handled at the OS level not the application so the end result is that the table appears 'normal' to VFP/ ...Show All

  • Windows Forms Update database

    I am updating the database using dataset. Insert works fine. But update doesn't. It loops through the code fine, but not updating. Please help... Thanks, Jijo. private void btnUpdateShipping_Click(object sender, System.Web.UI.ImageClickEventArgs e) { reqLogin.Enabled =true; reqPassword.Enabled = true; Page.Validate(); if (allOK()) { if (Page.IsValid)  { DataSet oDS = new DataSet(); string strConnection = ConfigurationSettings.AppSettings["connSt ...Show All

  • Visual C++ A problem of CComUnkArray::Add() in the atlcom.h

    Hi all, The excerpts of the function look like this : DWORD dwCookie = 1; for loop () {    if (condition match)    {       return dwCookie;    }     aiwdwCookie ++; } Look! What is aiwdwCookie I think this is a bug of atlcom.h. Could you help me to identify this issue Ah! I forgot to add the product version. I am using Visual Studio 2005 Professional. (Visual C++ 8) ...Show All

  • Visual Basic Partition table access

    How can I get access to a hard drive partition table trought Visual Basic .Net 2005 How can I Delete , Modify and Create new partitions ...Show All

  • Windows Forms Extension Snap-in for MMC 3.0 (clipboardFormatId)

    I'm Creating an Active Directory Users And Computers PropertySheetExtension Snap-in using the Microsoft.ManagementConsole Namespace for MMC 3.0 I could manage to create a PropertySheetExtention Class, Display A PropertySheet with controls, but i bumped into a problem, being unable to read the data coming from the Parent Node..(and of course write it back). From what I get, the data is sent through the SharedData Property of the PropertySheetExtension object, from which I tried to parse the data using the GetItem method.. but I didn't know what to put in the "string clipboardFormatId" parameter of the SharedData.GetItem() ...Show All

  • .NET Development Garbage collector - destroying connected objects

    Suppose you have a parent object that has a child object amongst its members.  To support communication between the two objects, the child object also holds a reference to its parent.  My question is, can we be sure that the garbage collector is able to destroy the parent object (and the child object) when it is no longer used (all references pointing to the parent going out of scope) I am only a simple VB programmer but I know this used to be a problem in COM with VB6 as the garbage collector was using reference counting back then.  The parent object could not be destroyed because the child object still held a reference to i ...Show All

  • Visual Studio Express Editions Alerts are not working!

    Alerts are not working! I see that I got replys to my recent posts, but, I have not been receiving my alert emails. The alerts were working fine until just recently. "Alert Me" is checked at the bottom of my posts. So, it isn't just me!!! james aka:Trucker ...Show All

  • Visual C++ strange error...

    Hey, Ok, this is the weirdest error I ever encountered... I'm working on a 3D engine, and today I felt like working on it a bit... When I go recompile it, I get: Error 1 Error spawning 'cmd.exe'. Hum ! So, to see if this was a project only thing, I created a new proj with just the main func... and i get the same error... Any help Huge Thanks Hi, once I had this error, and I solved it with this link: http://www.interact-sw.co.uk/iangblog/2005/09/12/cmdspawnerror Also check this thread: http://forums.microsoft.com/msdn/showpost.aspx postid=3147&siteid=1 ...Show All

  • Visual C++ Unicode Character Set vs Multi-Byte Character Set

    Hi, I'm using Visual C++ 2005, i tried to "produce" simple application with 2 buttons which gonna show a message when i press "ok" button. The problem is that book i'm learning from describe how to do it in Visual C++ ver. 6 First problem i had was that i couldn't compile Application witch Showmessage(...) becouse there was some conversion errors. I get over this by changing from "Unicode Character Set" to "Multi-Byte Character Set". Now everything "works" .... The problem is in apperance, when i have "Multi-Byte Character Set" selected in my project properties (or ch ...Show All

  • .NET Development Two packets POST to Web Service

    Hi All, I am building VB.NET web form application which access Web Service. I am wondering why the VB.NET send two packets to request the to the web service. First packet: POST /webservice/webservice1.asmx HTTP/1.1 SOAPAction: "http://webservice1/insUserName" Content-length: xxx Expect: 100-continue Host: 192.168.1.1 Response from the web service: HTTP/1.1 100 Continue Date: ... Second packet: <xml version="1.0" encoding="utf-8"> Response from the web service: HTTP/1.1 200 OK ... I am wondering if there is a way that this packet can be just one packet, such as: POST /webservice/webservice1.asmx HTTP/1.1 SO ...Show All

©2008 Software Development Network