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

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

kylemad

Member List

Flyrod
noicamz
Aliciawarder
bani3
loffe1978
bc020400363
A.T.
Tyler Davey
JP123
KurtH
Bene
albedo20
rajesh_chd
oldguy1166
Doug M
ICTIS
rkin005
Aluphoss
HFa
ayat108
Only Title

kylemad's Q&A profile

  • SQL Server SQL 2005 and SQL 2000, one Dev server, co-existence

    We have many SQL 2000 servers and are beginning to plan our upgrade path.  Has anyone had experience running SQL 2005 and SQL 2000 on the same machine   This would be in a development environment to aid in our analysis.  Is this possible   Any issues or concerns Hi Marco, I'm not an expert on the CDW. You should post this to: http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=84& ...Show All

  • Windows Forms Missing ticks when in tracing mode?

    I noticed that my herbivores sometimes don't get called every tick. Especially when they are attacked by a quick carnivore (e.g. Beast), they stay paralized and miss sometimes more than 5 ticks!!! I've put a WriteTrace command at the start of every  ...Show All

  • .NET Development XML Fails validation

    My XML fails validation. My root element: <UNHCR_RRF xmlns=" http://tempuri.org/ElectronicRRF.xsd " xmlns:dt="urn:schemas-microsoft-com:datatypes" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance " xsi:schemaLocation=" http://tempuri.org/ElectronicRRF.xsd UNHCR_RRF.xsd"> When I validate, I get the following errors: Error: The 'urn:schemas-microsoft-com:datatypes:dt' attribute is not ...Show All

  • .NET Development Managing General Exif Info with Image.SetPropertyItem

    When working with Exif information in jpeg files, I been using the following code: (Question is at the bottom) Image img = Image .FromFile( "C:\\temp\\pics\\mypic.JPG" ); System.Drawing.Imaging. PropertyItem prop = img.PropertyItems[0]; SetProperty( ref prop, 33432, "Copyright Information..." ); img.SetPropertyItem(prop); prop = img.PropertyItems[0]; SetProperty( ref prop, 315, "Artist..." ); ...Show All

  • SQL Server http://localhost:8080 does't work??

    Im trying to set up an reportserver in my newly installed 2005-enveriment. But i can't get the report/reportserver to work when i brows to http://localhost:8080 i get an treestrukture off the website, but not the site Do i have to reinstall my reportserver or are there anyone who can help me It have been working, but suddenly it doesent I don't know if my applicationspolls are correct insalled either DEAR LUKASZ, THE ABOVE ERROR ...Show All

  • Visual Studio Do I really need subreport links for independent subreports?

    Hi all, I have been Google-ing and searching for an answer to this simple question, but to avail. I have created a complex report which contains 4 subreports. These subreports run independently from the main report (ie. the main report and each subreport has it's own SQL Statement which run independantly from each other) and there are no subreport links because there is no need - the subreports do not reference any fields etc from the main ...Show All

  • Visual Studio Tools for Office Create New doc from some parts of old one

    I was wondering if I could make a macro that would identify table cells as headers and content. Then be able press a macro button to create a new doc with this info in different formats. Example (I have a complexe document with many tables in it, one set of tables are like this one below) Audio Name Audio Content SBO_010_Intro.wav Intro Text here SBO_010_Intro ...Show All

  • Visual Basic Winsock Question....

    I have to build a VB 6 program that (i'm guessing) sits on a server and "listens" for messages coming in on a particular port that are in an ISO format.  I have a pretty strong VB background, but have never done any programming on this level.  I'm looking for any input on what my best angle would be to handle this.  My problem is that I have no idea where to send the information back.  In looking at Winsock documentation, it ...Show All

  • SQL Server ODBC Destination in SSIS

    Hi! I have a problem that stops me from using Integration Services as THE ETL tool. My goal is to load a data warehouse type of a database. The database is MaxDB (former SAP DB), but this is not the point. Let's take ANY ODBC compliant DB and assume all I have is ODBC driver - no OLE DB driver. I figured out how to read from ODBC source (using Data Reader and ADO.NET provider for ODBC). Now my question is how do I output/write my data into ODBC ...Show All

  • Visual C# concurrency violation

    Why public void MoveUp( int ID) { OpenConnection(); DataAdapter da = connection.GetDataAdapter(); string SQL = string .Empty; SQL += "Select..." DataTable tbl = connection.GetDataTable(da, SQL); //my lib, no problem executes SQL and return result in datatable // 2 righe di risultato if (tbl.Rows.Count == 2) { // swapping int temp = Convert .ToInt32(tbl.Rows[0][ "Ordine&q ...Show All

  • .NET Development Taking Values

    Hi Ive been trying to figure out how to take a value from a cell in a datagrid that imports data from excel so that i can take the value perform a calculation and move it to another cell on another datagrid but i cant find a way to remove the value or move it can anyone help plz its urgent! thx The purpose of the datagrid control is primairly for display purposes. If you want to manipulate the data ...Show All

  • Smart Device Development Icon Logo Requirements

    What is the best way to meet these logo requirements in CF 2.0 and VS 2005. Required: 16x16 and 32x32 Pixel Icons for Application and File Types Applications are required to register 16x16 and 32x32 pixel icons for their main executable and saved file types. High DPI Implementations The shell will stretch application icons: If an application does not provide a correctlysized icon the Shell will automatically stretch the provided appl ...Show All

  • Software Development for Windows Vista Why is Microsoft using a proprietary web forum solution and a proprietary RSS format?

    Why is Microsoft using a proprietary web forum solution instead of Internet standard newsgroups (e.g. microsoft.public.*) Why is Microsoft's propritetary web forums using a proprietary RSS format that doesn't work with Newsgator Michael.  It's interesting to note that Google ranks Microsoft's proprietary web forums as the #2 and #3 hits when searching for "Microsoft proprietary".   Checkout http://www.goog ...Show All

  • Visual Studio Team System Project Creation Wizard Didn't Find Reports Data Source

    I was trying to create a team project based on my own process template... Event Description: TF30162: Task "Populate Reports" from Group "Reporting" failed Exception Details: The Project Creation Wizard encountered a problem while creating reports on the SQL Server Reporting Services on MyServer. The reason for the failure cannot be determined at this time. Because the operation failed, the wizard was not able to finish ...Show All

  • Visual C# Load Icon from file

    How do I set the Icon on the top bar to an exteranl .ico file ok do this.. private void Form1_Load(object sender, EventArgs e) { this.Icon = Icon.ExtractAssociatedIcon("file path to an exe or ico file"); } remeber this static method of Icon class not only that gets the icon form lets say a .ico file.. but she can get you also the ico of an executabel Have luck!!! If you dont manage to work it out ...Show All

©2008 Software Development Network

powered by phorum