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

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

aspx

Member List

rainersimon
deezer
Victor2005
hda
ajAZZ
Kondori
MartinBatsman
zydjohn
JJ Brychell
JZ10256
Peter Senescu
Alan Creaser
Geek cra451
Hanuman_Sinha
robhendershot
okshilato
Aris Extra
virayanna
Wei Wang father of twins
Gary A. Bushey
Only Title

aspx's Q&A profile

  • Visual C# help with OOO think?

    Hi I wounder if someone can help me ooo think about this problem. Bakgrund: I have some date in a database and would like to transfer it to a cvs file. This is a simple problem and can be solved without ooo. But since I am a Lazy person would i like to solve this problem ooo. Next would i purhaps export it to an xml file or a another databse. My Think I made three four classes, mainClass, dbConClass, importClass, exportClass. The dbConn ha ...Show All

  • Windows Forms Click_down be raised if button pressed continouosly

    Which property I need to set to have a button raise Click_down event if it is pressed continouosly. My button moves selected item up and down in  a listbox, I dont want user to Press button 10 times, if he wants to go 10 items&nb ...Show All

  • Visual Studio Team System False positive CA1051:DoNotDeclareVisibleInstanceFields on ComVisible(true) structures

    I think DoNotDeclareVisibleInstanceFields should not be raised on ComVisible(true) structures. Alex Hi Alex, why do you want this rule not to fire on ComVisible structures Are you trying to satisfy a contract where there has to be a public field COM interfaces allow properties as well so when your class is exposed to COM you should be able to call through the properties. Regards, Jeffrey ...Show All

  • Visual Studio Tools for Office Capture Word Document Keyboard events from Visual Basic

    Hai,    i would like to capture the altered text in the word document from the Visual Basic. Is there any way to do this                 Thanks in advance.   Bye.  Suresh. You have a couple of options: 1) You can use the Revisions collection of the ActiveDocument 2) You can use a smart tag (all keystrokes are captured, and you can hav ...Show All

  • Visual C++ error C2259: cannot instantiate abstract class

    I'm trying to make a Virtual Constructor Function to return a pointer to a new object; "ServerExt". My code is: class ServerExtApp : public ServerExt { public:  virtual void execute() throw(ServerExtApp::Exc); }; ServerExt *virtualCtor() throw(ServerExt::Exc, bad_alloc) {  return new ServerExtApp; } but when I compile I get these mistakes: Compiling... ServerExtApp.cpp E:\VICTOR\IN\INFITEL\SCRIPTS_PRUEBA\ServerExtApp.cpp(94) : ...Show All

  • Visual Studio 2008 (Pre-release) ANN - Map Browser

    Map Browser - Nov CTP version The binaries are here (the ZIP file is very big - 2MB - because of the map data) http://www.valil.com/winfx/Valil.MapBrowser.zip It shows the map of Toronto, you can zoom in/out, recenter or zoom on a rectangular region. This is an exercise to see how far Avalon can go. The geometries are rendered using visuals, in my opinion it is the optimal solution when dealing with such a large number of graphic elements. ...Show All

  • Windows Forms Selecting a row in a datagrid without putting the cursor in the cell

    I am somewhat new to datagrids.  I want to have the user click or double click in a datagrid to select (highlight) a specific row.  What is happening is that the row is being selected but the cell they click in is turning Gray&nb ...Show All

  • Visual C# Forcing the Setup to RollBack()?

    With an Installer class, I am overriding the Install() function. I have read that throwing an InstallException() from within my Installer DLL code, will force the setup project install to fail and cause setup to rollback. But this causes an ugly dialog to pop up and inform the user that an exception has been thrown. I am wondering if there is another (cleaner) way to cause the Install() to fail, and there for RollBack() Thanks folks. ...Show All

  • .NET Development why does IDictionary extend IEnumerable?

    public interface ICollection : IEnumerable public interface IDictionary :ICollection, IEnumerable ICollection already extends IEnumerable,why does IDictionary extend IEnumerable Hi Because when u itrate in a Collection you can not Add/Delete items to the Collection but in Dictionary you can. So to implement uodation while in itration they have implemneted IEnumerable in IDictionary ...Show All

  • .NET Development Windows App Not working over Network

    I've got a windows app that connects to a DB and copies a few files from a network share to the local PC. The app is ran on the network share because everybody in our company uses it and when modifications are made, we don't want to have to redistribute 50 or so copies of the .exe. Every time I run the program from the network, I get a standard Windows error and Microsoft wants me to send them the information, it doesn't get too involved oth ...Show All

  • SQL Server typed XML parameter for a CLR stored procedure

    does anyone know how to pass a typed XML parameter to a CLR stored procedure Cheers The only reason of passing typed XML to CLR SP is to verify it against schema, because CLR cannot use the benefits of the typed XML. Unfortunately, built-in autodeploy feature in the VS 2005 cannot create CLR SPs with typed XML parameters (as well as many other useful things), so I use predeployscript.sql and postdeployscript.sq ...Show All

  • Visual C++ linkLabel_LinkClicked

    With managed C++ what would I have to type on this linkLabel_LinkClicked code in order to make my link go to a website of my choice #pragma endregion private : System::Void linkLabel1_LinkClicked(System::Object^ sender, System::Windows::Forms::LinkLabelLinkClickedEventArgs^ e) { } }; } yeah I read it and I go t the following errors: ------ Build started: Project: linktest, Configuration: Debug Win32 ----- ...Show All

  • .NET Development <input type= file name=** Generated at run time

      In a function i have created Multiple BROWSE butttons "<input value=""browse"" style=""button"" type=""file"" name=""btnBrowse" + CStr (nPageId) + """>" now in second Function i want to access the filenames How to do that ButtonNames are like btnBrowse32 btnBrowse33 btnBrowse34 ..etc   Regards Sarika   Hi! Thanks for asking! I'm a member of the ASP.NET team, and was just popping over here to see ...Show All

  • SQL Server MSEE 2005 Storage Capacity

    Hi Friends, I am Gokul, I am using SQL Server MSEE 2005 (Free ware). Currently I am involved in the development of an application where I am using SQL Server MSEE 2005 and VB.Net. My incomming data size ranges from 5 GB to 7 GB per day. Can I use SQL Server MSEE 2005 as Data base with any licensing or have to get any license for storing larger capacity data. Can any body please help me. Thanks, Gokul.G Hi, SSEE is limit ...Show All

  • Visual Studio what are the % and @ operators

    There are quite few details i couldnt find in msdn documentation i see some examples using % operators where can i find details about them espcially scope and operations etc. Also the other information those wont be captured in schema like relation between ItemGroup and Target etcetc Thanks, Sajjad Hi, The @ is used when you need to change a list of items into a single string, where as the % ...Show All

©2008 Software Development Network

powered by phorum