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

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

ComicSansMS

Member List

Patrick F
Richard Lyon
bez_333
Rohan_Misys
Khammonh
JoeeT
Kris N
SP_UK
Jason Stowe
Gyeon
shanku
Andreiciuc Dan
Dan Danz
Bradley Lane
Chris Tourville
newbie_
yithoong
Mazen Nahdi
John Warner
hoangha
Only Title

ComicSansMS's Q&A profile

  • SQL Server Bulk Load Failure

    I have numerous jobs that use the Bulk Load object to transfer data. Once or twice a day, one of the jobs will fail with the folowing error: Error: 0xC0202009 at Data Flow Task, SQL Server Destination [73]: An OLE DB error has occurred. Error code: 0x80040E14. An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80040E14 Description: "Could not bulk load because SSIS file mapping object 'Global ...Show All

  • Visual C++ Active X

    Hello,       Does anyone know if it is possible to use an ActiveX with an MFC multiple document application. If so does anyone have a good site which would show me the way. I know how to use activeX with the a MFC Dialog Base application. Thanks in advance, maldini Hi Maldini, I found those 2 links but not sure 100% if that is what you need: http://msdn.microsoft.com/library/default.asp url=/workshop/browser/w ...Show All

  • SQL Server Connecting to Sybase

    Hi, I am assuming someone has had success connecting to Sybase from SSIS. I am having trouble. And I freely admit naivety when it comes to something like this. :-) I installed dbConnector 6.01 which has a Sybase connector as a part of the package. I then tried to create a connection manager for Sybase using OleDb, but it was not an option in the list of OleDb connections. So, am I correct in assuming that I need to use ODBC If so, is there ...Show All

  • Visual C# VS2005 randomly unable to find classes

    Hi I have a problem with Visual Studio 2005, in that it suddenly decides, quite randomly, that it can't find classes that exist within a particular namespace, even if the solution previously compiled ok. I can be quite happily fiddling with one completely unrelated file, but when I try and run the ASP.NET 2.0 C# application, it suddenly decides it can't find the class; even if the file in which it is defined is in the same solution, and e ...Show All

  • SQL Server lookup to check values in 13 columns with same values

    hi, it is my first post on this forum, please be patient if i miss any important bit of information. i am transporting data from a legacy system into mssql 2k5 using SSIS. among those column of a dataset there are 13 columns, all necessary for operational reasons, that i need to ensure data consistance. i believe i could do this check using the lookup data flow item, but surely there must be a way to do it in a more streamlined fashion. since co ...Show All

  • Visual Studio Team System I do not have permission to view the sharepoint webpage

    Hello! I've just installed Windows Sharepoint Services and when trying to got to http://localhost/ I get this: ------ You are not authorized to view this page You do not have permission to view this directory or page using the credentials that you supplied because your Web browser is sending a WWW-Authenticate header field that the Web server is not configured to accept. ----------- I am logged in to the Administrator of the domain, what is it ...Show All

  • Visual Studio Express Editions Oracle Provider in Beta 2

    How can I connect to an Oracle database with the C# express edition, beta 2.  In beta 1 I did notice that there was the Microsoft provider for Oracle databases but I did not get around to testing it.  In beta 2 this is not an option. Any suggestions Thanks in advance, Richard I think the express version are cut down, so you won't be able to that although you could in Beta 1. Visual Studio allows con ...Show All

  • Visual C# how to change color in a text cut

    i'm drawing a string in a progress bar control and when the string gets outside of the progress bar, if the backcolor is white and the font is white , we can't see it, so i need a way to be able to show the remaining chars in some inverted colors (backcolor of the progress bar) . i could have cut the string but it doesnt work if the bar cut a char in 2. waiting for an answer, i remember you that in this way, if ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. DirectX Extensions Problem for Visual Studio 2005

    Hello,      I have tried to find an answer for my problem for the past week, and I am not sure if this is the right thread for it.  I have installed DirectX SDK April 2006 with the DirectX Extensions, and I am running VS2006.  When I start VS2006 I don't see the DX extension icon on the intro Splash Screen, but I am able to see it in the About Box for VS2006.  The problem is not that it is justnot loading - ...Show All

  • Visual C++ Making the .exe file

    Hey I have a file .cpp that have my program. I want to execute it and make the .exe file. However, i cant find the way to do that in Visual Studio. Seens like I can only copilate the file if i creat a project, and then i have to build the project. when i build the project with my .cpp file inside, it give alot of errors and dont build the .exe. Can i creat a .exe file without making a project (like, just opening the file and pressing t ...Show All

  • Visual C# Need to launch a process on the server side

    Hi, I'm developing a Web application (ERP) with VS 2005 (C# and VB). We need to launch a process that: - Every month at a specific hour open a database - Delete rows that meet a specific "filter" (i.e. rows that were processed temporary last month) - Create a report with deleted rows. Of course it will imply in the case of the report build it and put on the server side. The question is how , it's a simiar proce ...Show All

  • Windows Forms bind DataGrid to 2 dimension array

    i want to bind a DataGrid to a 2 dimension array whose entries are user define class and i want to modify the property of the class through the DataGrid in an easy way. any advice It would be a nice feature to tie a datagridview to a two dimensional array, "header" array, column max, row max. ...Show All

  • Windows Forms .gif Animation Play w/out Looping in Visual Basic .NET 2005 Beta 2 Express

    Hi, can anyone tell me how to make a .gif animation play without looping When I load one into a picturebox, even when the file is not designed to loop, it loops anyways. How can I stop this Thanks, The Digital Pioneer To prevent the GIF from playing at all you can set the PictureBox.Enabled property to false. However to play the GIF once without looping you will probably have to create your own control. To do ...Show All

  • Visual C# Keypress event in Beta2

    Hi all, My trouble is to detect "Enter" keypress event upon a text box, however, the program never steps into Keypress event when I press "enter". Here is the sample code: private void toolStripTextBox1_KeyPress( object sender, System.Windows.Forms.KeyPressEventArgs e) {   if (e.KeyChar == ( char )13)  {   MessageBox.Show("okay");     e.Handled = true ;  } }   BR, Xuan ...Show All

  • Visual Basic Shared AssemblyInfo.vb (project settings) among projects: How in VS 2005?

    Hi everyone, In VS 2003, I have an AssemblyInfo.vb file that contains the GUID for the project and other project-specific settings. Then, I have an AssemblyInfoShared.vb file that is shared across projects in a solution. The Source code control system keeps everything in sync. That file contains the ComVisible(False), ProductName, etc. attributes, which are the same for the entire solution/product. I seem to be a bit lost as how to set up someth ...Show All

©2008 Software Development Network

powered by phorum