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

Software Development Network >> Don Pellegrino's Q&A profile

Don Pellegrino

Member List

Roland86
David Burhans
CWGibbs
Mike Duke
firewalker
Dobereiner Miller
tomjanssen
sunny39
Sundaraguru
Kevat
earth2
Intern Bob
Piwi
TheBenZ
yingfeng
CMick
Niraj Shah
Julian Ladbury
msibm
gregston roberts
Only Title

Don Pellegrino's Q&A profile

  • Visual Studio Report Source not Valid when using Remoting/Netrun

    Hiya! We are using Remoting for an application, and have integrated Crystal Reports. Currently we export the crystal report as a byte array from our business objects and write it to a file using a filestream. This works perfect in local and debug modes. When running thru remoting, however, we get a message "Invaid Report Source". The file IS being written... just cannot be read by the crystal report viewers load method. If anyone out there has a ...Show All

  • Visual C++ Which tools for programming audio apps? Which book(s) to come up to speed with .NET?

    Hello, I've programmed in C but it's been a few years and I'm new to .NET (missed VC++6 and VS2003 entirely). I want to develop a Windows app, with gui interface.  To do this, I need to record sound from the microphone, manipulate the audio data numerically, and play it back through the sound card.  I don't necessarily want to store the data to a file, and in general don't want to do so.  The audio samples are not very long a ...Show All

  • Visual Studio Team System ADAM Error on Installation

    Hi, I could not ever install the ctp version of foundation server. Finally on beta 2, i thought my woes would be over... Far from it Now it stops at the ADAM install itself. I did exactly as the installation guide said.. fresh machine..  it completes the step 1 starts the step 2 and then it says there has been an error.. now no info on what the error is all abt.  I chkd the known issues and it mentioned abt the TMP variable spaces... ...Show All

  • Visual C++ overriding virtual member function of a generic class using wizard

    in VS6 C++, "add member function wizard" was simple. but in VS2005 C++, it is no longer possible to copy and paste a function declaration into the "add member function wizard". (must add each parameters one by one....) for MFC classes, the property window provides a simple way to override a virtual member function, but that interface seems not working for generic classes. is there an easy way to override a virtual me ...Show All

  • Visual Studio Help! Installation package is too large by crystal report 10 merge module.

    I created a new installation package by installshield 10, I added only CrystalReports10_NET_EmbeddedReporting.msm into installation package and don't add any other file, then build the program, the size of the installation packge is 120M, it is too large for us. We use only dataset and ADO in our crystal report datasource. So we don't want to pack something that we don't need, for example: oracle and odbc etc. Is&n ...Show All

  • .NET Development Reading problem - damaged tif image

    Hi all, I want to read(binary reading) damaged tif image through c# code. Is it possible I will explain my problem. I am having a tif image which can't be opened in any of the vievers. But using some third party tools we can convert it into some other formats and open it. But I need to open it by using C# code Is it possible Anybody help me Regards, Joji Perayil If the media is damaged, then not really. If the file info ...Show All

  • Visual C# DataBase Location

    Ok. Basically, I would like by database to be accessed from my server. Can someone how to tell me how to put the database location property to my server address If you need more clerification please reply and say so. Thank you. Make it a multi-tier application (3-tier is preferred). The function thats responsible for calling, reading or updating database, should be called from server side only. From server side you call this specific functi ...Show All

  • Visual Basic Graphics question

    Hi there, I'm not sure where is the best place to post, but here goes anyway... I'm planning to make a graphics program in Visual Basic. Although I used Visual Basic a long time ago, and have somewhat of a knowledge of programming, I am by no means expert (you might say barely past beginner) and have been more of an enthusiast in the past (my real job is design and animation). Recently, I downloaded VB Express and decided to take the plun ...Show All

  • Visual C++ VS2005 Linker /ENTRY

    We have a bunch of legacy DLL code which uses makefiles to build. The DLLs all use /ENTRY:SomeOtherName rather than the default and I've encountered a problem in VS2005. If I put the /ENTRY switch on the linker command line in the makefile, it doesn't seem to work - when I attempt to load the DLL via LoadLibraryEx(), I get an entry point not found error (0x7f). If, however, I put the /ENTRY switch in the LINK environment variable, the DLL loa ...Show All

  • .NET Development dataset copy probleam

    hi... i want to create  a function that detect  my dataset was changed. so i create two dataset datasetOri and datasetChange . So in my program, when form load, i automaticly backup the datasetChange that i receive from my database to datasetOri. And then user can change their data and this change i not update into database until user click button save. So at this time, i just update the datasetChange only . If user click  button ...Show All

  • .NET Development loading classes from single project vs. multiple assemblies

    Hey guys, Are the below two cases identical 1. Having a single project with 100+ classes. 2. Separating the project into a bunch of assemblies and dynamically loading the assemblies. Second case involves the use of a lot of reflection and attribute-based programming. I am mostly worried about speed of execution. I am planning on going with approach 2, but am worried that there may be some unknown overhead to reflection or assembly based pro ...Show All

  • .NET Development Embedding resources in a static assembly (Reflection.Emit?)

    I've been looking around a bit on the web now for information about how to embed resources into .Net assemblies, and everywhere, everything I find is about Reflection.Emit and about dynamic assemblies. I want to make an application which creates as it's output another application. This output application should always contain the same code, but different resources - so it's conceptually the same as a self-extracting zip archive. In this, ...Show All

  • Visual Studio Error 1402 Installing VS 2005

    am getting the error "Error 1402 could not open HKEY_LOCAL_MACHINE \Software\Classes\Interface\... \ProxyStubClsId. Verify that you have sufficient access to that key, or contact your support personnel. My UserId has admin rights so I don't think that access rights are the problem. Logged under the local admin account and tried again. Same error. Someone posted that there could be installation problems if the organization name was ...Show All

  • .NET Development How to access the ComputerName

    I'm trying get the ComputerName (as seen in the System Properties dialog, Computer Name tab) from within a C# .Net application. Any suggestions as to where this data item is hidden within the .Net Framework Eric Thanks. That lead me to what I really needed which was: IPHostEntry iphost = System.Net. Dns .GetHostEntry( Dns .GetHostName() ); txtLocalMachineName.Text = iphost.HostName; ...Show All

  • Visual C++ File Already Exists popup on CFileDialog.....

    Hi I am trying to save a file thro my application. For this, I set the CFileDialog properties as given below: CFileDialog oFileDlg(false, NULL, "xml", OFN_ALLOWMULTISELECT | OFN_FILEMUSTEXIST | OFN_PATHMUSTEXIST | OFN_OVERWRITEPROMPT, NULL, this); Please notice that I have used the "OFN_OVERWRITEPROMPT" property. Hence, I should get a prompt asking if i want to overwrite a file when i am entering the a file name that already exist ...Show All

©2008 Software Development Network

powered by phorum