Software Development Network Logo
  • Visual Basic
  • IE Development
  • Windows Forms
  • Microsoft ISV
  • Game Technologies
  • .NET Development
  • Smart Devicet
  • VS Team System
  • Windows Vista
  • Visual Studio
  • Audio and Video
  • Visual FoxPro
  • SQL Server
  • SharePoint Products
  • Visual C#

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

aur0ra

Member List

Lee Walters
IMZiggy
hunb
Nisa
ComSpec
RhysDavies
BitShift
hfann
newbie911
Dugan Porter - Microsoft
Spulit
Rico5
Jorne
Peppermint
encoded
Marlin7
mbp
Chris Holt
Rabbitrun
enric vives
Only Title

aur0ra's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. Visual C# Download Error?

    I have a Windows XP Home Edition SP2 and everything else I need for this to work. I don't have DirectX though so that might be the problem, but I can't download it. I go to the install screen and everything is fine, it finishes downloading and installing, but at the very end a pop-up comes up and states: Microsoft Visual C# 2005 Express Edition - ENU has encountered a problem during setup. Setup did not complete correctly. EventType : visualstudio8setup P1 : 10861 P2 : 8.0.50727.42_rtm_x86_ixp P3 : pr P4 : inst P5 : f P6 : microsoft windows installer 3.1 P7 : baseret_failure P8 : - P9 : 1603 P10 : - The following files will be included in this error report: Temp\WLFC64.tmp Temp\SDBC65.tmp ...Show All

  • Visual Studio 2008 (Pre-release) DocumentViewer Style

    Hi, may be you can help me. I wanna know how to personalize the DocumentViewer Style toolbar and the search box. I wanna change the tooltip text of the toolbar, the text appear at the search textbox, the text of the "Match case" and the color of the toolbar. Thanks a lot people. Take a look at http://fortes.com/2005/11/03/customizing-singlepageviewer-part-3/ Its a bit old but will get you pointed in the right direction --Ifeanyi Echeruo[MSFT] ...Show All

  • SQL Server Change chart type dynamically from Column to Line graph??

    I am developing several charts with column type and sub type as stacked. There is a requirement from the users that they want an option to choose the type of chart. Is it possible to change chart type dynamically from say Column type to Line type based on user option in front-end Any help will be appreciated. Thanks in advance !! The closest you can get directly in RS at this point is to define multiple charts with different types and conditionally only show one of the charts based on a parameter selection. -- Robert ...Show All

  • Software Development for Windows Vista Interacting with different users based on roles

    Hello, I've designed a document validation workflow but still with no roles on it, so anyone can introduce a document and anyone can validate it. I've been searching info about roles and what I've seen is that you can say which roles can or cannot do an activity. But my application is a bit different: There are 4 different roles (ranks of the employees). Role 5 (the less "important") can post a document, that same user can modify it as many times as he wants and then send it to validate, and it has to be shown in the list of pending documents of role 4. But role 4 can as well post a document that has to be validated by role 3, and role 3 need validation from role 2 etc. I suppose there has to be a way of designing a sing ...Show All

  • Visual Studio file extension and view code not working - SynchronousXmlDesigner sample

    I'm playing around with the SynchronousXmlDesigner Extensibility project and am failing to add or replace a the file extension other used in the sample, ".addin". I have replaced all references to ".addin" in the VSPackage.cs file with temp ones, ".test", the Designer works fine but I cannot get the "View Code" to work. The file contents are xml the same as the .addin, that shouldn't make a difference. What else is required in order to change from .addin files to .test files You are missing a registry entry used by the XMlDesigner. In order for the XML Designer to recognize your extension you must add the following registry entry Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\S ...Show All

  • Visual C++ Problem loading dll created by VisC 2005

    Hi, I converted a C++ project from VS .NET 7.1 to VS .NET 8. The project uses old fopen methods and similar. Under 7.1 the project compiles and runs, but under 8, I am unable to run. First, when running the application, it complains about missing msvcr80.dll. Then, when I locate it (somewhere) on the computer, I get the error that the application tried to load the dll in an illegal manner. When searching for info on this, I stumble into manifests, and I see that the manifest should contain some lines about the msvcr80.dll, version etc. But my manifest file is empty. It only contains this information: < xml version="1.0" encoding="UTF-8" standalone="yes" > <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manif ...Show All

  • Windows Forms Trying to deploy the program

    I am trying to publish my program using Visual Studio .NET 2005 by going through Build -> Publish "Project".. When I run my project either by building the project and go to bin/Release folder and run the exe file, or just by pressing "F5", it works fine. But if I publish the project and install it on a system, it won't find the access to database file. So I tried to uninstall the program by going to Add/Remove in control panel. But when I try to remove it from the system, it gives me an error messages saying "Uninstall of application did not succeed. See details ...." the detailed message says...   ERROR SUMMARY  Below is a summary of the errors, details of these errors are liste ...Show All

  • SQL Server DTEXEC /CONFIGFILE Option

    I have the following command which uses the /CONFIGFILE option: master .dbo.xp_cmdshell 'dtexec /DTS "\File System\Packages\MyPackages\MyPackage" /SERVER "MYSERVER" /CONFIGFILE "C:\Program Files\Microsoft SQL Server\90\DTS\Packages\MyPackages\customersite.dtsconfig" /MAXCONCURRENT " -1 " /CHECKPOINTING OFF /REPORTING V ' When the package runs, one of the first things it reports is that the configuration file, 'customersite.dtsconfig' cannot be found: ... Description: The package is attempting to configure from the XML file "CustomerSite.dtsConfig". ... Description: The configuration file "CustomerSite.dtsConfig" cannot be found. Check the directory and file n ...Show All

  • .NET Development Email Reports

    How do I go about emailing Access reports, via Outlook Whilst it is possible to create an email in outlook programmatically, you will not be able to attach files - security reasons blocked by Windows. You can however programmatically send emails (including attachments) via SMTP Server, giving it credentials if required. Example: Import the System.Net.Mail namespace, then..... Dim theEmailMessage as new MailMessage() theEmailMessage.Attachments.Add(new Attachment( pathAndFileToAttachment )) theEmailMessage.Body = " body text here " theEmailMessage.From = new MailAddress(" from@me.com ") theEmailMessage.To.Add(" to@someone.com " ) theEmailMessage. ...Show All

  • Software Development for Windows Vista DragDrop from custom Toolbox class into Workflow designer

    I am trying to integrate Lab 10's workflow designer hosting into "the perfect host" demo shell application. The general idea of the application will be a forms designer that allows event logic in workflow instead of code for business users. Both code bases implement a toolbox differently. In my application when I try to drag - drop an activity from the toolbox implementation from "the perfect host" article, the drag - drop icon remains in the "not supported" mode (ghostbuster like icon) I have been comparing the differences between the toolbox implementations and decided to integrate the GetToolboxItem routine from lab 10 into the other application so that the DataObject passed to DoDragDrop is an Activ ...Show All

  • Visual C# How to creat array of bitmap?

    Hi, Anyone can tell me how to creat array of bitmap in C# this doesn't work: Bitmap [] imagedataarray = new Bitmap[5] (inputImage1.Width, inputImage1.Height); thanks ahead, Frank thanks ahmedilyas ,it works.Frank ...Show All

  • Visual Studio Express Editions Old "statndard C++" in VC++ Express

    This may sound silly - but I have successfully built CLR .NET Apps and with the Platform SDK some win32 native apps using VC++ express 2005 with ease! . But how can I use some old C++ code of form: #include <iostream> using namespace std; int main(){ cout << "whatever xxx......" << endl; return 0; } making an empty project and adding file(s) containing straight C++ code like the above, results in 48++ link errors. Obviously I am missing something basic here! ------ Build started: Project: stdclibs, Configuration: Release Win32 ------ Linking... test1.obj : error LNK2019: unresolved external symbol "public: __thiscall std::exception::exception(char const * const &)&qu ...Show All

  • Visual Studio Run custom code on the startup

    Hi all, I'd like to know how to run my custom code when I start my visual studio experimental hyve, because I'd like to be able to monitor a folder using a FileSystemWatcher and that has to be done from the start of Visual Studio till the user closes it down. I looked at the PackageBase, but not really sure how to use that. Any thoughts / tips for this Thanks! Clemens using VSShellInterop = global ::Microsoft.VisualStudio.Shell.Interop; using VSShell = global ::Microsoft.VisualStudio.Shell; using VSTextTemplatingHost = global ::Microsoft.VisualStudio.TextTemplating.VSHost; namespace MyNS.My { [VSShell:: ProvideLoadKey ( "Standard" , Constants .ProductVersi ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Reference Rasterizer

    Hey there... I'm playing around with XNA and it works well. But i ran in troubles on my old notebook. There's no DX9 compatible graphics adapter and i don't see a way to use the reference DeviceType. Anyone knows a way Check this thread ...Show All

  • SQL Server Need help for Matrix report

    Hi, I am working on the Matrix type of report and need help on that. My report output should be as follows SrcType | Prev Score | ErrorType1 | ErrorType2 | ErrorType3 | ErrorType 4 | ------------------------------------------------------------------------------------ A | 50 Normal| 15 | 28 | 56 | 20 | A | Abnormal| 5 | 6 | 36 | 10 | A | 150 Total | 20 | 34 | 92 | 30 | % | 13.33 | 22.66 | 61.33 | 20 B | 250 Normal| 25 | 88 | 156 | 20 | B | Abnormal| 55 | 16 | 86 ...Show All

©2008 Software Development Network