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

Software Development Network >> Hemant Hindlekar's Q&A profile

Hemant Hindlekar

Member List

Juco
msdobrescu2
FRUSTRATED_TOO
Patch77
ThE_lOtUs
Barry Kwok
GoDaddy
Matt DC
dave45
JGP
Ivo6070
Jack Hoxley
Kris M.
Andre.Ziegler
Andreas Kranister
csann
Jabber
Rhubarb
Mike Hudgell
wolf777
Only Title

Hemant Hindlekar's Q&A profile

  • Visual Studio 2008 (Pre-release) Hosting at remote machine

    Hi, I'm using WCF June CTP. I successfully hosted WCF service (basicHttpBinding) in my local machine. Then i tried to host it in different machine, just changed my hosting url from http://localhost:7000/SimpleService to http://machine2:7010/SimpleService .Now i'm able to host the service.(means service is running without any error). But when i try to create proxy by using svcutil.exe, it says could not able to find the service. could anybody tell me, how to check it whether the service is successfully hosted at machine2 If so why svcutil.exe could not able to identify is there any other way to create proxy (without svcutil.exe) Rgs Vasu Hi, I have the same problem today. I use WinXP Pro SP2 ...Show All

  • Visual Studio Express Editions DataGridView Manipulating data

    Hi I want to use a DataGridView as a report for a system I'm designing, I don't want to bind it to a database and I don't have the know how yet to figure out how too... although it would help me out soo much! basically all I want to do for now is be able to change the header of the table (which at the moment only seem to be changable in design time) and then to add data to how ever many cells are required. thanks Ah thanks man!! I'd like to ask you something else not sure if I should start a new thread or not though.. I want to create a database without having to implement an SQLserver enviroment is this possible can I still have a single DB that follows my app around and then how do I bind it to ...Show All

  • Visual Studio Remove “View Code” from Context menu

    I have an editor register for a “.xyz” file. On the Context menu I see a “View Code” option. I would like to remove it for the .xyz file. How can I Do this Also I would like to remove the “Cut”, “Copy”, “Delete”, “Rename” Options from the context menu (.xyz). Is this possible If so how can I do it Thanks Hallo, First of all, do you mean the context menu in the editor or the one when you right click the file in the project hierarchy Since you also want to remove the Cut, Copy, Delete, Rename commands, I guess you mean the one in the project hierarchy. To change or control the appearance of these commands, you have to be the implementer of the project. Then you can control all th ...Show All

  • SQL Server Migrating to Sql25k

    We’ve got hundreds of branch which are working with MSDE. As we are moving sql25k, what the ideal version would be adviceable to install there Sql Express How to handle this I have a fuss on my head because of there are many vesions available. Thanks in advance for any comment or further information, Yes, SQLExpress is the succesor to MSDE however "Express" is a much better core database engine as it support more hardware, less restrictions (including the fabled 5 connection limit of MSDE) etc. Here is a link that lists out the differences between versions: http://www.microsoft.com/sql/prodinfo/features/compare-features.mspx And as far as the actual upgrade proces ...Show All

  • Visual Studio 2008 (Pre-release) How to populate a WPF TreeView node from a datasource?

    I'm having a question about populating a treeview control node. <TreeView> <TreeViewItem Header="Node1"> <TreeViewItem Header="Subnode1"/> ... <TreeViewItem Header="Subnode10"/> </TreeViewItem> <TreeViewItem Header="Node2"> <TreeViewItem Header="Subnode1"/> ... <TreeViewItem Header="Subnode10"/> </TreeViewItem> </TreeView> Now, my problem is that I have a observableCollection that holds infrmation for subnodes that go into "Node1", and another observableCollection that holds information about subnodes that go into "Node2". Until runtime, I don't know which ...Show All

  • .NET Development Suppressing display of duplicate values for a given column in DataGridView.

    Hi, Some help please, There is any method that can make the display in a datagridview look like this Date Transactions Type Amount 12/23/2006 Rents $450.00 Overdue $50.00 Sales $150.00 12/24/2006 Rents $500.00 Overdue $30.00 Sales $200.00 How can i suppress the display of duplicate values for a given column in a datagridview. Maybe this thread will help. ...Show All

  • Visual C# Memory windows on toolbar?

    I asked this previously with no replies, so I am posting it separately. How can I get a button for memory window(s) on the debug toolbar How can I get the registers window to not share a window with the memory window Your suggestion about the memory windows was just what I was looking for--thanks. For the registers, I am looking for a window that displays the machine registers (EAX, EBX, etc) continuously; the "List registers" command does not update as you step a pgm. If I use the keyboard shortcut ALT-5, I get the registers window, just as under VS6, but it shares the memory 1 window. That means you can't see memory 1 and registers at the same time, and you can't set the size of the w ...Show All

  • Visual Studio 2008 (Pre-release) Problem with MEX WSDL

    Hello, I was trying to use an WCF web service from SQL Server Integration Services (SSIS). This web service returns an array of int and an array of a data contract. The WSDL is provided by MEX. There are 4 schemas xsd0-xsd3. xsd1 imports xsd2 and xsd3. And the WSDL imports all xsd files. The problem is that SSIS doesn't like the double imported schemas. So It doesn't work. After manually editing the wsdl and removing xsd2 and xsd3 it works. Are the twice imported schemas a bug Or is this standard conform Thanks, Uwe A Web Service is used by SSIS with a WebService Task: Define HTTP connection to URL for the Mex-WSDL: ... wsdl. Use HTTP connection and specify file for storing the wsdl loca ...Show All

  • .NET Development Adding the same code group using Mscorsfg or Caspol yields different names

    I use the Framework 2.0 Configuration Tool to add a child code group. I name the code group MyCode. After it is added the displayed name is Copy of MyCode. I use caspol to add the MyCode code group. The name displayed in the Configuration Tool is MyCode. Why the difference Can I control this How Robert I would also like to know if this indeed a bug, or atleast the cause. I understand it is trivial thing to change back to the original name ... it is just something that is nagging me. ...Show All

  • Visual Studio Express Editions Communication Between Multi Forms

    Hi. I'm a beginner in VC++ and I've a big problem to make possible change the controls appeariance belong to one Form from another Form.For example I've got 2 Forms: Form1 (with button & TextBox) and Form2 (also with button & TextBox), when I clicked button from Form1, the text in TextBox on Form2 should change, and when I clicked button from Form2 the text in TextBox on Form1 should change. I was trying evrything, and only what I done is changing from Form1 the TextBox on Form2. So Please Help Me. Here I Show You The code: File: Form1.h >>>-----------------------START--- Form1.h ----------------------------> #pragma once namespace Delete9 { using namespace System; us ...Show All

  • Visual C++ Getting Shortcut target path

    I am facing an issue when I am trying to get the target path of a shortcut file(.lnk). I am using IShellLink::GetPath() for doing this. I am having a local user say "User1". Logging in as "User1" I am creating a desktop shortcut pointing to a folder("MyFolder") inside the "My Documents". Now I am logging in as administrator and running my application and trying to retrieve the target path of this shortcut file. But I am getting the target path as "C:\Documents and Settings\Administrator\My Documents\MyFolder", where as it should have been "C:\Documents and Settings\User1\My Documents\MyFolder". It was showing the wrong path even when I checked it manually by taking the shortcut file properties. I am using VC++ 2003 on Windows XP SP2. ...Show All

  • Windows Search Technologies How to index shared calendars for searching

    I'm trying to use the Desktop Search engine to search in multiple Outlook shared calendars at the same time. It's important that they ARE shared and that I want to search them all at once, there are so many! If Desktop Search can't do it, is there ANY other way of dong this VBA is an option. Any ideas I just reciently verified this functionality in WDS 3.0 and it worked correctly. What version of WDS are you using What version of Office are you using What search entry point are you using ...Show All

  • Visual Studio Team System TFS SP1 and Team Build

    Should SP1 be run on the Team build machine too Thanks -Ken ...Show All

  • Visual Studio Documenting subclasses with sandcastle

    Dear all, when documenting classes that contain subclasses, the presentation in the "Contents" tab is flat. Is there a possibility to indent the subclass under its appropriate main class I am using the SeptemberCTP Tech.Refresh with HelpfileBuilder 1.3.1.1 to generate HTML Help 1.x CHM file. Thanks for your help. Regards, Jens ...Show All

  • SQL Server Cross assembly or cross domain calls not supported

    If I compile a simple .NET DLL with the following function and register it as an assembly in Analysis Services: public static int MyFunction(object o) { return 99; } When I run the following query I get an error which reads " Execution of the managed stored procedure failed with the following error: Cross assembly or cross domain calls not supported!. Execution of the managed stored procedure failed with the following error: Cross assembly or cross domain calls not supported!. Execution of the managed stored procedure CSng failed with the following error: Microsoft::AnalysisServices::AdomdServer::AdomdException. " with member test as MyAssembly.MyFunction(CSng("2.5555")) select test on 0 from ...Show All

©2008 Software Development Network