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

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

imranmbukhari

Member List

Matthew_Stevenson
bitbonk
Ric Bevan
Will George
RachelCooper
shafiqm
Mdmoberly016
OzerK
Roof Top Pew Wee
KonRi
RHPT
marco.beninca
leclerc9
Gagand
DigitalFusion
RDH123
Agent00
ClarkMN
phoenix11
The-Traveler
Only Title

imranmbukhari's Q&A profile

  • SQL Server Having Two datasets in a Single Report

    Hi, i have developed a report with sql reporting services 2005 which consists of two datasets in the same report. Any performance issues it will cause Thanks, Shanthi Hi, Am using both the datasets . Is there any other alternative to avoid multiple datasets in the report Thanks, Shanthi ...Show All

  • Visual C# Visual C# 2003 + Framework 2 SDK?

    Hi - I hope this is the appropriate forum to post this to... I'm writing an app that is to target framework 2.0. I have an older copy of C# 2003 Standard, and after installing the framework 2 sdk I tried switching the target runtime, but it only lets me change it from 1.0 to 1.1. I have two questions. 1) Is there any way to target framework 2 using the 2003 IDE 2) I have not seen C# 2005 being sold as a standalone product, will I need to purchase the entire Visual Studio in order to only get C# Thanks for your help, Joshua jhansen wrote: 1) Is there any way to target framework 2 using the 2003 IDE No, there's no way. jhansen wrote: 2) I have not seen C# 2005 being ...Show All

  • Visual Studio Express Editions How do I prevent the console window from popping-up in my Windows Application Project?

    How do I prevent the console window from popping-up in my Windows application I mean, if I started from an empty project (or console application), and now I started using windows forms in it, the console window would not stop popping-up when I run the program. Is there some kinda compiler switch or option in the Visual C++ IDE to stop it from opening the console window (OR) How do I convert an empty project (or console project) into a Windows application project (i.e. so that the console window doesn't pop-up anymore.) You want to change the target subsystem from Console to Windows. Go to Project Properties - Linker - System and change the SubSystem drop down to Windows (/SUBSYSTEM:WINDOWS). Doing this should get rid of the annoying ...Show All

  • SQL Server TABLE ACCESS UNDER SEVER MANAGEMENT

    I have created a database under sql sever management and also created all of the tables for that database. When i am in Visual basic express edition and try to bind an element on the form i am ask to add a new database resource. I give the name of the database but i am not getting the tables under that database. How can i create under sql sever management and get access to the tables for any express edition language I do not want to create tables within each express edition language. What do i have to do so the catalog will pick up the tables within sql server management    Thank you for you time. I'm sorry but I don't fully understand what you want to know. You mention " ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. xna racer, how and when can i get it

    i saw this thing on something called xna racer, and it amazed me that we could do this with xna http://www.kotaku.com/gaming/xna/clips-xna-racer-preview-213594.php does anyone know anything about getting this David Weller - MSFT wrote: andyfraser wrote: Hold onto your hat until the 11th December Andy Nope. Although the XNA Racer game will be available to Creators Club members, the game itself will not be avilable for download on Dec 11th. It will probably not be available until early next year (we are making a few changes to the game). Adding that multiplayer component and Achievements, right ...Show All

  • Visual Studio Express Editions Which book is best for learning C#?

    Hi, I was wondering if anyone could recommend a good book for learning C#. I already know ANSI C++, which means I don't know MFC programming. I'm very good at the language level (OOP an' all), but I couldn't decide which book would be best for me. Any advice will be appreciated. The books which I short-listed are : 1) MicrosoftR Visual C#R 2005 Step by Step (by John Sharp) http://www.microsoft.com/MSPress/books/7655.asp 2) Programming MicrosoftR Visual C#R 2005: The Language (by Donis Marshall) http://www.microsoft.com/MSPress/books/7219.asp Which do you think is better Or if you have a better book in mind, please tell me. Thanks! hi, this is the same question http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=436671&Si ...Show All

  • .NET Development Specifying framework version with COM interop

    We are having problems with COM interop called from a Classic ASP Page loading the wrong version of th framework. If I load an assembly written in 1.1 on a computer which has multiple versions of the framework 1.1 & 2.0 and it is called from another assembly everything is OK and it uses the correct version. However, t here is documented behavior with COM interop where it ignores the registered version of the framework in an assembly. I f the same assembly is loaded through COM interop it loads and runs in the 2.0 framework. Seems this behavior is noted and documented ( http://west-wind.com/weblog/posts/1319.aspx ) and even some potential solutions - Here and here but these only seem to work for apps that don't get register ...Show All

  • SQL Server Could anyone test this on SQL2005 AdventureWorks

    SELECT TerritoryId , [2003-01] , [2003-02] , [2003-03] , [2003-04] , [2003-05] , [2003-06] , [2003-07] , [2003-08] , [2003-09] , [2003-10] , [2003-11] , [2003-12] , [2004-01] , [2004-02] , [2004-03] , [2004-04] , [2004-05] , [2004-06] , [2004-07] from ( select TerritoryId , CONVERT ( CHAR ( 7 ), h . OrderDate , 120 ) AS theDate , d . LineTotal FROM Sales . SalesOrderHeader h JOIN Sales . SalesOrderDetail d ON h . SalesOrderID = d . SalesOrderID ) p pivot ( sum ( LineTotal ) for theDate in ( [2003-01] , [2003-02] , [2003-03] , [2003-04] , [2003-05] , [2003-06] , [2003-07] , [2003-08] , [2003-09] , [2003-10] , [2003-11] , [2003-12] , [2004-01] , [2004-02] , [2004-03] , [2004-04] , [2004-05] , [200 ...Show All

  • Visual Studio Team System Deleting all workspaces of a certain name

    I have a build server where different developers log in and update the code from TFS. I'm working on a bat file that will automatically look for a workspace of a certain name on the system and delete, then recreate it as the user that is currently doing the get latest. This is sort of a workaround to the fact that there are no shared workspaces. I have two command line scripts that work well. The first below retrieves a list of all the workspaces with that name. This can be used to see what developer currently owns the workspace: tf workspaces [workspacename] /server:http://server:8080 /owner:* The following will delete a workspace for a specific user: tf workspace /delete [workspacename];username /server:http://server:8080 /noprompt Bu ...Show All

  • SQL Server predict products ( data mining 2000)

    i want to make a web page and when somebody come in. i want show for him which products that everyone often buy at that time ( month or summer ). how i do in data mining to predict that products more: i want know how much percent of product is like by buyer or i want show products with desc % of the like of people For SQL Server 2000 you would use Microsoft_Decision_Trees. You will build a model based on your customer/shopping basket table using the wizard. Since 2000 doesn't support creating nested tables in the wizard, you then need to add the nested table from your transaction table in the data mining editor. Your model will look something like this CREATE MINING MODEL MyModel ( Baske ...Show All

  • SQL Server How to create a custom tier above msmdpump.dll or create custom msmdpump.dll??

    I want to hit Analysis Services over HTTP but with custom authentication.  Is it possible to intercept the request before it gets to msmdpump and authenticate the user credentials coming from the client app   Or is it even possible to implement some interface or inherit from a base class and create my custom msmdpump.dll You are somewhat oversimplifying what msmdpump.dll does. The HTTP to TCP/IP transition involves translation of headers (some of them are custom), which is non-trivial piece, managing the pooling under different security settings etc. It is possible, of course, to replicate its functionality, but I am afraid "simple webpage" won't be enough to do it. ...Show All

  • SQL Server Cannot connect locally to SQL Server Express

    Hi, I'm trying to connect to a SQL Server 2005 express on my local Windows XP Professional machine. I've searched the the MS fora and Google but all the answers I find relate to trying to connect to a remote DB, not local. I run the aspnet_regsql.exe program in the interactive wizard mode, and in the Select the Server and Database step when I click on the Database drop-down list an error box pops up: Connection failed Failed to query a list of database names from the SQL server. An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named P ...Show All

  • Software Development for Windows Vista Putting Downloads Folder in the Start Menu

    Hello all. In using Vista I've noticed that all the web downloads go to the Users/ username /Downloads folder. I like the new Start Menu, but would love the ability to add or remove some of my personal folders from it. So I'm wondering this: How can I add the Downloads folder to the Start Menu in place of or after the "Games" entry in the personal folder list on the right side Thanks for any tips you can offer. ~Brett Aero Glass also comes with a new panel for adjusting the visual appearance. To customize your Aero Glass appearance, click on a blank area of your desktop and from the pop-up, select ‘Personalize’. You may also access this through the Control Panel> Appearance and Personaliza ...Show All

  • Visual Studio Unable to debug System.Net.DigestClient throws an exception

    I converted a VS2003 application to a VS2005 application. I have no errors and no warnings when I compile. When I attempt to run I get the error:   Unable to start debugging on the web server. The type initializer for 'System.Net.DigestClinet' threw an exception. Any thoughts on how to fix this Yes I also made an IIS based application starting from scratch. I made a watered down version of what my converted application does. ...Show All

  • Visual Studio Express Editions How to get the size on disk of a file in c#

    Hi I want to get the size on disk of a selected file in c#.By using FileInfo.Length i am able to get the file size.But i need " size on disk" in c#. Thanks in advance Thanks Chandu.Sanka The Win32 function GetCompressedFileSize() can get the size of a compressed file. Use File.GetAttributes() to determine whether the file is compressed. ...Show All

©2008 Software Development Network