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

Software Development Network >> Imran Shaikh's Q&A profile

Imran Shaikh

Member List

sharpguy
signal5
TjMulder
vhmau
Graham Wright
webmaven
Ravi_Kumar
xhh
AndyHock
Vladimir Fedorov
sereleg
Daniel Pravat
Roland Kamsika
Sam Skrivan
Green Beret
Dhatri
阿毅
Tim Ward 123
Orschiedt
Jesper P
Only Title

Imran Shaikh's Q&A profile

  • .NET Development ASP.NET, IIS 5.0 and 2000 Professional

    Does the .net framework come with Windows XP Professional so that ASP.net can be used right out of the box Scott Thanks, I knew it had to be online somewhere.  My search on the internet did not include unisntalling and reinstalling IIS, so this article did not come up for me.  My faith has been restore in Microsoft...gawd help us all. ...Show All

  • Visual Studio file grouping i VS project

    I'm extending VS project using My editor generates partial class definition and stores it in a file. How can I make VS group my file with main file of this class (like class.designer.cs groups with class.cs in Forms projects) Your "main file" should have an EnvDTE.ProjectItems to which you can add the subfiles. If this does not answer your question, please provide more details (which project ...Show All

  • .NET Development DataTable.CaseSensitivity affect on relational selects

    I am trying to modify how a DataTable.Select behaves with respect to case sensitivity. The documentation implies that: The CaseSensitive property affects string comparisons in sorting, searching, and filtering. Modifying the example to use a relative operater and not the equal operator I get the same results independent of the value of the CaseSensitive property. Is this a bug Is there a way to affect relational operators in a ...Show All

  • Software Development for Windows Vista Does Dec CTP have updated Ink analysis?

    Does the Dec CTP of the Windows SDK include the pieces that were in the Mobile and Tablet SDK   In particular the new Ink Analysis APIs Jamie, Thanks for the follow-up.  By adding IALoader.dll to my references all seems to be working again.  I am still trying to figure out the rationale for where things are.  Some are in the run-time components, some in the SDK to be copied into the application install, some in refer ...Show All

  • Visual Studio Team System Programmatic Project Creation via TFS API in Beta 3

    I noted that Beta 2 did not support programmatic project creation via the TFS API.  When reviewing the Beta 3 SDK, I could not determine if these was now possible, although this feature did not appear to be present.  Could someone clarify if programmatic project creation is available now in Beta 3 I'm afraid it is not.  We will not be supporting programmatic project creation in version 1 of TFS.&n ...Show All

  • SQL Server Batch invocation of Drillthrough action

    Does anyone happen to have an example of a batch invocation of a drillthrough action Essentially, what I'd like the ability to do is use the results of the drillthrough to feed into another process (i.e., to use as input to an SSIS package or load into a relational table.) However, I've found no examples of what the action settings would need to be in the Application field, for example. Maybe drillthrough isn't the proper action to define it ( ...Show All

  • Visual Basic Directx8

    I have read tons of posts on the issue that I am having.  I am extremely new to this so I need somthething close to layman's terms. Can anyone help me with determing why I can't reference to DirectX8   I have it in the referencing list, but when I attempt to reference it in code (Dim directx As *****) it does not allow. I have downloaded myself into a confused mess through getting several version of the DIrectX SDKs and then moving ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. resize help

    anybody know how to resize a direct3d window and allow the window contents to resize dynamically while draging the resize Thanks in advance, Devin This is standard behaviour; you get the same in native DirectX as well as MDX... The lines and such in the window get stretched with the window as if distorting to fit the new picture box size. The internal Direct3D representation hasn't changed si ...Show All

  • Visual Basic VB vs C#. How capable is VB compared to C#?

    I need some clarification please. I am learning VB.NET right now and have a co-worker who has a very strong technical background and feels very strongly that learning VB is a "waste of time in all respects" compared to C#. I don't understand this point of view. Since VB is a .NET language does it not posses the same capabilities as C# Am I on the wrong track I really enjoy the VB.NET syntax and am picking it up quickly. ...Show All

  • Visual C++ C4533 warning, "initialization skipped by goto"

    Is this warning buggy in MSVC 7.1 or is it just a stupid warning In the example given here: http://msdn2.microsoft.com/library/f7687yks.aspx It makes sense because the condition, (1) will always be true and the goto will always skip the initialization. But the following code gives me the same C4533 warning and it makes absolutely no sense why it should. #include <iostream> using namespace std; struct TOILET {   &n ...Show All

  • Windows Forms Visual Studio custom control designer events. How to enforce a single instance of a control on a page?

    I have a custom control that I've added to my tools menu but I'd like the component to ensure that when it is added to the page that there are no other instances of that component already on that page. I've looked for any information outlining any events that are thrown when a control is dropped ontp a page in designer but without luck. Is there an equivilent of a "onDrop" event in designer which I could then attach my "one and only one instance ...Show All

  • Windows Forms IDE Designer unable to display forms containing user controls

    When I implement user controls and use them on the main form all within the same project, eventually the IDE Designer stops displaying main form. The IDE will give a message about one or more errors while loading the designer. And then it will say it can't find the user control. The compiler will compile and execute the application just fine. Am I missing something that I have to do to eliminate this problem The problem doesn't seem ...Show All

  • .NET Development ASPNET user not found

    Hi, Uses: Windows 2000 Server, Windows XP, Sql Server, ASP.NET 1.0, Visual Studio 2003, .NET Framework 1.1; I've an ASP.NET application, and thought of deploying it in a Windows 2000 Server installed computer which also takes the role as Additional Domain Controller. I've installed .NET Framework 1.1 onto it as well, besides have run the ASP.NET application exposing the SQL Server's "SA" password in the Connection String which is ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Managed DirectX application stops responding

    I'm making a DirectX game using C#. I have an issue that I'm trying to solve for some time now and, so far, had no success. The game stops responding when I run it on the computer I use for development. The freeze occures in the first minutes of play. The stop is not conditioned by some action, it will stop even if the player does nothing. When the freeze occures the only way to recover is reseting the computer, Ctrl+Alt+Del or Alt+ F4 doesn ...Show All

  • .NET Development .NET canvas

    Hi i need to paint and save my image, but i dont found any canvas in .NET. Can you give me some reference Thank you Can you provide more information on what do you mean by "canvas" In .NET we can turn almost any Forms and Controls, Images and Bitmaps to a drawing-area using the Graphics class, and/or with the help of various renderers. Is that's what you mean by "canvas" -chris ...Show All

©2008 Software Development Network

powered by phorum