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

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

shade29450

Member List

StanStandard
Misch
Grant Carthew
Zartaj
cane
NeeTrihT
H.Saber
Ping Wang
dbottjer
Archana G
Patrick Baker -MSFT-
saravanan_first
urw
Richard Fine
-Alex-
Cylon2005
krymium
muthusanmy
mix600
Agalab
Only Title

shade29450's Q&A profile

  • Visual C++ LIBJPEG errors! (error C2371: 'INT32' : redefinition; different basic types)

    Hi. I'm getting these compilation errors in my project: Compiling... jpegio.cpp i:\programmi\microsoft visual studio 8\vc\platformsdk\include\basetsd.h(62) : error C2371: 'INT32' : redefinition; different basic types d:\files\programming\image manipulator project\jpeg-6b\jmorecfg.h(161) : see declaration of 'INT32' jpegreader.cpp jpegwriter.cpp i:\programmi\microsoft visual studio 8\vc\platformsdk\include\base ...Show All

  • Windows Forms Multi Threading Question

    I want to be able to put threading into my generic assembly that other coworkers could use in there development projects. All I am doing is populating a datagrid on a worker thread but there is one line of code I am having problems wi ...Show All

  • SQL Server Passing a parameter to Oracle in SS2005 Data Integration Services

    I need to do incremental updates to a SQL Server 2005 datamart. The data source is an Oracle view. The sql statement is very simple: SELECT * FROM <oracle_view> WHERE UPD_DAY = :PARAM1 UDP_DAY & :PARAM1 are both varchar(8) 'YYYYMMDD' format. If I use a hardcoded value like '20060115' it works just fine and I only get the records for that date. When I try to use the parameter the Parameter button in the sql editor returns an ...Show All

  • .NET Development Create new culture in .NET 2.0

    I want to create a culture like page.en-Student.resx.  So, I add a new file GlobalResource.en-Student.resx to the App_GlobalResources folder.  When I compile the web site, it give me the following error :  Error 2 c:\WINDOWS\Microsoft.NET\Framework\v2.0.50215\Temporary ASP.NET Files\personalwebsitestarterkit\3abf988f\2dae50a1\j5ycuigx.1.cs(28): error CS0101: The namespace 'Resources' already contains a definition for 'G ...Show All

  • Windows Forms Speeding form draw behavior

    I have a winform that is shown as a dialog that unfortunately has to contain a very large amount of controls, nested controls, etc. The result is that there is a fairly noticeable draw sequence when the form is shown. When I was doing some of my own drawing with a custom control, I could double buffer the control so that things were drawn smoothly (or appeared as such), is there any way to enable double buffering for a parent form so that the en ...Show All

  • SQL Server Conversion of Database into text file

    hi All, Actually i have a project on data minning...n i have to convert the databases into text files so that they can be consolidate ....n when consolidation of the databases(in the form of text files) would be done i have to convert the consolidated one (text file) into database again. so anyone plz tell me dat how to convert a database (using sql server & C#) into text file... regards, Hello. This is what Sql Server Integration ...Show All

  • Windows Forms XML table Search - Table Does Not Have Primary Key

    When searching a DS loaded from a .xml file I get the error that the table does not have a primary key. I checked the .xml file (with schema embedded) and the primary key is set. The errror comes in item #2 when you do a search on the DS Any help would be appreciated. Tks, graab The following code does 2 things: 1. loads the DS in to the c1Grid on _Load Private Sub frmMainSearch_Load( ByVal sender As System.Object, ByVal e ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. loading mesh like mesh viewer

    is there a way and if so how can one load mesh files like the mesh viewer loads them, I took just for kicks the tiger sample and loaded a mesh that a friend made and it dident load right, rotates right off the screen, I dont really understand VC++ much to find my way through the mesh viwer code I am using C#, and help would be great. I did both of those and maybe its not my lights, let me explain whats happening. ...Show All

  • Visual Studio Visual Web Developer: keep in within 6.5in---is that the only thing I can do ?

    I tried to export my one page report ( 8.5” X 11” ) to PDF file, and I got two pages. Some of the columns of my report go to another page. How can I export my one page to one page PDF file correctly Thanks in advance.   Long Hi, Victor, You need to change two kinds PageSizes, one is report PageSize , the other one is body PageSize . When you change the margins, you play aroun ...Show All

  • Visual FoxPro migrating VFP app to .net (architecture question)

    Hello everyone! I'm a fairly experieced database developer (SQL Server primarily, and Oracle quite a bit less). My experience with .net is primarily vb.net to built asp.net applications, using web services as my middle man. I just started at a new company which has a few legacy systems, one of which is a rather large FoxPro application. There are a host of problems associated with it, primarily data conflicts. Because the company has grown so mu ...Show All

  • Visual Studio Emailing a report

    I have a locally hosted report in an ASP .Net application.  I am rendering this report to a text stream so that I can send it via email, but I think there is probably a better way to do this. What is the best way to programatically email a locally hosted report Hi John -- How are you handling retreiving the rendering from the web control and subsequent image streams that get processed   I've been looking into utilizing this techn ...Show All

  • .NET Development Populating Combo Boxes from a txt file?

    I am building an application that has several tabs that in turn has many controls on it.  I am wanting to deploy txt files that will populate the combo boxes with the application.  Thus if the combox box list needs to change it could be done by updating the txt files.  My idea now is to have the txt file contain the name of the combo box and the items associated with that combo box listed directly underneath.  The problem is ...Show All

  • SQL Server Cart data row

    I have a SQL table with summary data.  I want to display a pie chart for fields in each row and a table that displays values from the corresponding row. I have a table and pie chart defined.  However the pie chart only displays for the first row in the table.  The table repeats ok for each row in the table.  I have tried placing a rectangle on the report and putting the chart and the table in the rectangle but it still wor ...Show All

  • Windows Forms Datgridview / C# problem

    Hi, I have classes: public class role { string _roleName; ... public string RoleName { ... } } public class person { int _age; string _firtstname; string _lastname; role _role; public role Role { ... } } I try bind properties to datagridview but (person) Role.RoleName doesn't work. Example: person p = new person(); p.FirstName="Niko"; p.LastName="Jalkanen"; role r=new role; r.RoleName="It-Designer"; p.Role=r; dataGridViewTextBoxColumn1.DataPro ...Show All

  • .NET Development Saving Chat server state - can't serialize or save to file

    I have built a chat server using a singleton remoting structure, but now i need to save the list of users that log into that to re-start the server and reconect to this users I have hashtable with the user name and his machines's remoting pointer the name saves ok, but the pointer throw a huge exception: "runtime error: " Remoting cannot find field __identity on type System. MarshalByRefObject ."" how come it ...Show All

©2008 Software Development Network

powered by phorum