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

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

xanthom

Member List

caprock
B Langston
raja_t
jasMSDN
Frank Ran
Andy Henderson
nathan.wells
Maasai
intensebb
Gary zhuo
seigo
ShawnGower
KEM1
John Doyle
Nick.Muguira
David Scrutton
Paul Fallon
Sequel
Alexander Bunakov
ive
Only Title

xanthom's Q&A profile

  • Visual C# Storing files, images in SQL an download ???

    Hi, I'm uploading files to SQL and the user can select one to download it can be a txt, jpg, rar file and I want to know how can I always make it to show the downlaod dialog without print it on the screen like if it's a jpeg I'm using Response.ContentType=dr["ARQ_Typeoffile"].ToString(); Response.BinaryWrite(( byte []) dr["ARQ_Filedata"]); and it's not working, cause it print on the current screen... Than ...Show All

  • SQL Server SQL Server Connection problem

    Hi All I want to connect SQL Server in a remote pc [Windows XP] from my pocket pc but it gives an error message that SQL Server does not exist or access is denied But when I connect SQL Server in a pc running under Windows 2000 professional it works fine waht is the problem behind it please send some information Regards Bijaya It may be the Windows Firewall on Windowx XP. If it is turned on, and you want to access the SQL ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Theory: Multiple SDK/DirectX Installations and the C3635/C3377 problems

    First off this is what I have installed in regards to .NET, DirectX and Programming Software - all in their own directories. DirectX - October 2005 Edition DirectX - December 2005 Edition DirectX - February 2006 Edition Visual Studio 2005 Express (C#, C++ etc) - Net SDK 2.0, DX Feb2006 Visual Studio 2003 C++ - Net SDK 1.1, DX Oct/Dec and Feb (separately) Visual Studio 6 C++ (Not used since 2003 installed last year) Net S ...Show All

  • Visual Studio Team System FxCopCmd 1.35b1 not processing any rules.

    When I run FxCopCmd on the command line from an MSBuild script: C:\Tools\FxCop\FxCopCmd.exe /o:"C:\Projects\Common\trunk\bin\reports\fxcop.xml" /p:"CodeAnalysis.fxcop" /axsl /verbose I noticed it isn't finding any problems even though opening the CodeAnalysis.fxcop project in the GUI does find at least 10 rules that need to be addressed: Microsoft FxCopCmd v1.35.51212.0 Copyright (C) 1999-2004 Microsoft Corp.  All rights reserved. ...Show All

  • Visual J# newbie: trouble connecting windows form to SQL table

    Thanks to anyone who can help... I'm building a data entry windows form in VS.Net 2003 J# that requires the data to be sent to a SQL Server table (the table's name is "Local") when the form's "SAVE" button is clicked. I've built the form using the windows form designer. There are six fields that will use SQL statements to send data to the Local table, and none of the fields are permitted to be null values. Two of the fields a ...Show All

  • Windows Forms Shortcuts

    i have a vb.net project with msaccess i want to make its shortcut on user's desktop and in program menu but when i did it opens the location folder what i do for it plz reply me soon i m using visual studio 2003 1) In the Files sytem Editor, select the item you want the shortcut to point to. 2) go to the Action menu and select "Create shortcut to <item>" 3) Drag the newly created shortcut to the User's Desktop folder in the ...Show All

  • SQL Server xml modify 'replace value of' using sql:variable

    I need to be able to use sql:column in a xml modify/replace statement. Is this supposed to be possible Here is a simple scirpt that shows the problem I am having. I used sql:variable instead of sql:column for the sake of simplicity. declare @xml xml set @xml = '<root/>' select @xml declare @value varchar(10) set @value = 'val1' set @xml.modify('insert <item value="{sql:variable("@value")}" /> into (/root) ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Scaling (Shrinking) Sprite Chops Off Texture...

    I am using the October 2005 Release of DirectX 9.0. When attempting to Scale a Sprite I am running into some very odd behavior. When "growing" the Sprite the Texture stretches and maps fine. When "Shrinking" the Sprite the texture apparently does not shrink - and it gets cut off. I am setting the Transform properly on the Sprite, applying SpriteFlags.AlphaBlend to Sprite.Begin(), and using Sprite.Draw(). Is anyone else ...Show All

  • Visual Studio Express Editions Publish Can't Find Redist Files

    I've checked SQLExpress, .Net Framework, and Windows installer  and checked "Download prereq from same location an as my application" and get several errors.  Here is a sample:  Error 4 The install location for prerequisites has not been set to 'component vendor's web site' and the file 'DotNetFX\dotnetfx.exe' in item '.NET Framework 2.0' can not be located on disk. See Help for more information. TOPKPDFServ ...Show All

  • Windows Forms ListView columns

    Can a ListView control contain columns with objects instead of just text   I want to be able to add columns with checkboxes, but it doesn't appear to support this.  I know there is a checkbox property, but that only adds one checkbox  ...Show All

  • .NET Development finding directory size in vb.net

    I've been trying to find the size of a directory with vb.net but not having much luck. I've tried things like: My .Computer.FileSystem.GetDirectoryInfo(basePath). but no appropriate methods or properties are coming up. Any ideas Thanks. I think .NET 2.0 has some methods to do this - I know for a fact that it can get the total size of your drive etc... using a namespace in the framework, i cannot ...Show All

  • Visual Studio 2008 (Pre-release) Is compression built into a WCF service?

    In order to gain a signifant performance boost using .ASMX web services that utilize SOAP and text-based packets, a common strategy is to compress the data after it is serialized and then send it across the wire, whereby it is uncompressed, deserialized, and ready for use. My question is, does a WCF service do this for you, or is a hand-tooled compression algorithm still required to get that performance gain Thanks Kirk ...Show All

  • Visual Studio Express Editions Controlling the Serial Port

    Hello! I want to control the serial port and have converted some code over that i was using but got all kind of errors. Does Visual Basic Express deal with Mscomm1 the same as VB6 I tried to find some code to help see any difference but was unable to find such. Is there any code out there that i am not finding that allows me to crontrol the serial port Thanks, Kevin The .NET framework provides the SerialPort class: http:/ ...Show All

  • .NET Development Discontinuation of DIME Support

    When will DIME support be discontinued in the Microsoft tooling Thanks, Khalid ...Show All

  • .NET Development Problem serializing a System.Enum from C++/CLI - works fine from C#

    I have a strange problem. I have a simple type that I'm trying to serialize and send to an MSMQ queue. [System::SerializableAttribute()] public enum class HostDataRequestTypes { None, FindAccountByANI }; [System::SerializableAttribute()] [System::Xml::Serialization::XmlRootAttribute( "HostDataRequest" , Namespace= "" , IsNullable= true )] public ref class HostDataRequestClass { pu ...Show All

©2008 Software Development Network

powered by phorum