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

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

Imran Ashraf

Member List

Arjun
Daniel Correia
Phillip Hancock
tamlin2
Andrew K.
EHamel
Jason1001
PawelWasilewski
Sean D Wright
CharlottesvilleDeveloper
csharpener
kolo
sdoyle
Micaa
Bigmo
Wargazm
Eduardo Baião
David 2008
o?uzhan
edsun
Only Title

Imran Ashraf's Q&A profile

  • Visual Studio Intallation of VS2005 beta 2

    I tried to install the new version on A PC with 2 operation system 1. windows 2000 with VS2003 2. Xp Sp1 clean installation For installation I download the standard edition from MSDN developer site. I tried to install it on the Xp system. I get an error code of 2908 and after press ok I get an error code of 1935 with error regarding it assembly component {18A752B8-D6F4-4F1C-B2EA-CA7876F45A03} Can someone help avi Cohen Scitex vision avi_cohen@scitexvision.com The problem is how to open the iso file if you download it from microsoft site. If you use the IsoBuster dont use the red button (iso) use the blue one (>>& ...Show All

  • Visual C# Read from html file

    how can i get my email on hotmail from my application like outlook You want to get the e-mails from Outlook You can find a article on code project that shows you how to interact with Outlook, go check it out here . ...Show All

  • Visual C# C# Equivalent of SqlDataReader.Item

    I'm new to C#, moving over from VB... Is there an equivalent to VB's SqlDataReader.Item   Here's what I'm trying to do: SqlCommand cmdSelectedRecord = new SqlCommand (SQLStmt,conn); SqlDataReader SelectedRecord = cmdSelectedRecord.ExecuteReader(); txtLastName.Text = SelectedRecord.Item("lname"); txtFirstName.Text = SelectedRecord.Item("fname"); SelectedRecord.Close(); Obviously I have defined my SQLStmt and conn as the connection.  "lname" and "fname" are tables in the database that I am querying.  The build error I get is: System.Data.SqlClient.SqlDataReader' does not contain a definition for 'Item'. Thanks, Jeff ...Show All

  • .NET Development GUID error - Object reference not set to an instance of an object

    I am out of ideas, can someone please provide their input I am runing a stored procedure: public static XmlDocument GetServiceRequestByEntityID( Guid oEntityID) { SqlConnection oConn = new SqlConnection (( string ) ConfigurationManager .AppSettings[ "ConnStr" ]); oConn.Open(); SqlCommand oCmd = new SqlCommand ( "uspGetEntityServiceRequestID" , oConn); oCmd.CommandType = CommandType .StoredProcedure; oCmd.Parameters.AddWithValue( "@entityID" , oEntityID.ToString().ToUpper()); return GetServiceRequest( new Guid (oCmd.ExecuteScalar().ToString())); } Which then trys to run: public st ...Show All

  • .NET Development Carriage returns when adding element value in XML / XSLT

    Hi I have done an XSLT which works but for some reason it is adding a carriage return when I am adding an element value, the xslt is: < xml version='1.0' > < xsl:stylesheet version= "1.0" xmlns:xsl= "http://www.w3.org/1999/XSL/Transform" xmlns:a= "http://www.w3.org/2000/svg" > < xsl:template match= "/" > < textdata > < xsl:for-each select= "a:svg/a:text" > < text > < xsl:attribute name= "id" > < xsl:value-of select= "text()" / & ...Show All

  • SQL Server How to drop data value filed in Report Builder "Chart"

    Report Builder (SQL 2005 September CTP) does not allow me to drop a field into the "Drag and Drop Data Value" box. Are there any restrictions on the data type for the value series BTW, I love the tool! ...Show All

  • Visual Studio Team System Where do Standards docs come in?

    Hi, I'm fairly new to MSF so pls forgive me if this question sounds dumb: Where do Standards docs come in for the MSF agile process Like "Coding Standards", "Naming Conventions" etc. I don't see mention of these anywhere.. Thanks, JGP In some cases, we link to specific guidance provided by the patterns & practices group. Items such as coding standards and naming conventions are great to have, and a team should agree to follow one, but MSF does not prescribe any particular ones itself. You can add such team documents to the document library on the team project portal site. Also, you could custom ...Show All

  • Windows Forms Object explorer issue in Management studio 2005 9.00.852

    When I try to register any server in management studio or database in object explorer getting this error. ************** Exception Text ************** System.MissingMethodException: Method not found: 'Void System.Windows.Forms.TabPage.set_EnableVisualStyleBackground(Boolean)'. at Microsoft.SqlServer.Management.UI.ConnectionDlg.NewRegisteredServerForm..ctor() at Microsoft.SqlServer.Management.UI.ConnectionDlg.RegisteredServersContextMenuManager.ContextNewServer(Object sender, EventArgs e) at System.Windows.Forms.MenuItem.OnClick(EventArgs e) at System.Windows.Forms.MenuItem.MenuItemData.Execute() at System.Windows.Forms.Command.In ...Show All

  • Visual C++ How do I debug secondary executables on Visualc++6.0

    Running on wXP, ms Visual C++ 6.0. I have multiple executables. One of which starts the others, via WinExec(). How can I debug those secondary executables. Currently the only one I can BP or TRACE is the first one I start from within the IDE. If you have the srouces for the secondary executable, make sure you have its pdb and just place a break point in any of the sources of the secondary executable. Thanks,   Ayman Shoukry   VC++ Team ...Show All

  • SQL Server Causing a TableColumn/Control to fill remaining space

    Hello, I'm using a lot of SQL 2005 Reports in a WinForm application. The WinForm window can be resized, and so I want to adjust the report at runtime so that particular table columns (or other controls) will resize to fill the available space. The only way that I can see at the moment to do this is to add an expression for the width, and calculate the space available. The problem is, I don't see a way to set the width of a control to an expression, and this calculation will change when the report is changed, making it a hassle to keep track of. Is there any way to get a report element to expand right until it fills the fo ...Show All

  • Visual Studio Team System Extending Application Designer

    I know of one technique explained here on the forums on how to make Class Libraries appear on your Application Designer but that's not what I'm looking for. Is it possible to extend the Application Designer to support adding Class Library projects to it Has it been done already Thank you, Sammy Hi Sammy, Thanks for your question.  This has come up frequently and been a matter of hot debate!  The purpose of the Application Designer and System Designer is to design and depict 'applications', defined as configurable physical units of deployment, and 'systems', defined as configurations of applicati ...Show All

  • Visual Studio Express Editions how to limite data displayed in a listbox?

    I have a listbox "listboxServices" and an ACCESS db table "services", when i set the listboxServices' databinding to the default dataset, the listbox will show all the data in the services table. Instead, I want to list all services that have a null value in "DatejobDone" column in table "services" (i.e. all pending services). please help. btw, I created a new query for table "services" ---- "FillByPendingServices(), GetDataByPendingServices()", the sqlquery is something like : "SELECT ............ FROM .......... WHERE DatejobDone IS NULL " but no idea if it's what ...Show All

  • SQL Server Random access in a result set

    I use an SQL task to produce a result set which I store in a package variable. It works fine to access the result set in a script task by first casting it to a ADODB.Recordset, and then enumerating it and accessing the rows in the given order. But is there a simple and clean way to randomly access the result set  In other words to repeatedly select a random row from it One thought I had was to convert the result set to some sort of array which can be randomly indexed. But I didn't find out how... I'm not interested in creating an array by looping through the whole result set and inserting the row ...Show All

  • SQL Server OLEDB error while trying to import MDB data into SQL 2005

    Hello, I am getting an error while trying to import data into SQL 2005 from an existing Access MDB database. When I try this on another workstation there are no problems and the data is imported successfully. Could someone tell me what to look for or what setting I have incorrect. On the workstation with the problem I had removed SQL 2000 Personal Edition and installed SQL 2005 Standard Edition. Also, I have both Visual 2003 and 2005 installed on this workstation as well. Thanks TITLE: SQL Server Import and Export Wizard ------------------------------ Could not set up data flow connections. The connection type "OLE ...Show All

  • Windows Live Developer Forums Todd @ Devdays in Amsterdam question (about bots on MSN)

    Hi Todd, On the devdays confernce today in Amsterdam you mentioned that to make a bot on MSN you could either go through the Partners, or you could also talk directly through MSN (but have some limitations then) and parse the send strings yourself. Now browsing the forums and the messages about the Bots I see no where mentioned that you can also do it yourself WITHOUT using these partner platforms. Could you clarify how and where I could download an SDK to talk directly to MSN myself and setup a bot Thanks in advance, Reinier v Vliet There is no SDK to talk directly to Messenger. SDK's ar ...Show All

©2008 Software Development Network