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

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

Luap_25

Member List

PFerns
zdrae
scyle
Reid Westburg
donkaiser
MartinBo
kart
Tom25
Mondo2435
Phonics3k
robinjam
Ben Wang
kiran1234
Ayukawa
xAvailx
ACCOUNTINGONLINE.US
robin l
AndrewVos
torvaldson
Jamie Clayton
Only Title

Luap_25's Q&A profile

  • Visual C# Problems with function ?

    Hi There is a problem I am facing at the moment. I have a base class called A; I have 2 classes that inherits from it . B and C. I have a method with 3 overloads . 1 for A ,1 for B and 1 for C. public void DoSomeWork(A a){} .... On calling the method It goes to the proper one by its parameter. Now, My problem is that I am using a factory to get the proper Object for a specific case and I then assign it in an A object (base class). I then want to send it to the method and expects it to go to the proper one but it goes to the one with A no matter the type returned. I always get "in A1" //Base class A1 a2 = new A2 (); //Call the proper function DoSomeWork(a1); public void DoSomeWork( A1 a ...Show All

  • Visual Basic 2003 > 2005 Upgrade problem

    I have an application written in VB.Net '03 that worked fine until I attempted an upgrade. I have most of the bugs ironed out, but one I can't find a solution to: My buttons light up on MouseHover, and "unlight" on MouseLeave. This is true of all buttons, including the "exit" button. The problem is, after I click the "exit" button, the Windows Form Designer Generated Code "dispose" sub triggers the MouseLeave event, which generates an "ArgumentOutOfRange Exception because the collection the "unlit" Exit Button image is stored in is no longer available. Yikes! This didn't happen in '03 -- how do I sidestep it in '05 Is there a way to say "If the last button clicked was NOT & ...Show All

  • SQL Server Compact Edition DVD Standalone

    Is it possible to run SQL Server Compact Edition as a standalone application from a DVD i.e. it would not leave anything installed on the users computer after the DVD was ejected. If both .Net CF2 and SQL Server 2005 are installed on the target system, you should be able to deploy the DLLs for SQL CE on the DVD. ...Show All

  • SQL Server error when connect to sqlserver from another machine

    hi .. i install sqlserver and make app with vb6 using ADO to connect to the database and successfully i put that application on another pc on the network when i open it it says "can't login computername\guest" !! any help thanks in advance. It's hard to describe "domain controller" and related stuff in short words. I recommend you find some documents related to Windows Networks to read. Are you sure your client is running under the user account you created and you used that account to login to the server It means you may need to login the client Windows system and run your client app under that account. If you user Administrator or even logon the computer without a user/password, it won't work. ...Show All

  • Windows Networking Development Setting up FTP on Server 2003

    .................................................. Microsoft is actually very organized, you just need to take a peek in the right places. If you search up "Windows Server 2003 FTP" on Google, the first thing that is listed is the documentation on how to setup an FTP on Windows Server FTP. Here is the link: http://support.microsoft.com/kb/323384 Best of luck to ya, ;) ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Sample Overhead Shooter

    Check out my overhead shooter sample. The code is pretty clean and should be a good base for someone to see how overhead shooters are made. http://www.ziggyware.com/readarticle.php article_id=50 Thanks, Ziggy www.ziggyware.com ...Show All

  • Visual Studio Team System WebTest recording stops working when using FileUpload control

    I was making some web tests about uploading files. I noticed that after uploading the file the recording stopped. This is the results I have managed to find out so far. As far as I can tell, the problem has to do with the FileUpload web control. As soon as the FileUpload control is hidden (MultiView, panel etc) the recording stops. If the control is hidden when you get to the page the recording will work until the FileUpload control has been displayed and once again hidden. In order to reproduce this. I made a page containing one MultiView with Two views. One button in each view and one on outside the multiview and one FileUpload placed in view2. The button in view1 just changes view to display view2 The button in view2 just ch ...Show All

  • Software Development for Windows Vista WMI crashes

    Hi All I have a problems with a WMI provider that works fine on all Windows platforms but it is causing the wmiprvse.exe to crash.. I changed the mof files trying to use different declaration for the provider but it still crashes at the first enumeration of instances. The provider is a dll library. This is a part of mof file: instance of __Win32Provider as $P { Name = "NetworkPortInfoProvider"; ClsId = "{4f72b80e-4ba2-4a6c-9735-b84c39fb494b}"; HostingModel="LocalSystemHost"; }; instance of __InstanceProviderRegistration { Provider = $P; SupportsGet = TRUE; SupportsPut = TRUE; SupportsDelete = TRUE; SupportsEnumeration = TRUE; QuerySupportLevels = {&q ...Show All

  • Software Development for Windows Vista Adding a service after workflow starts

    Is it possible to add the tracking or persistence service after the workflow has already started running How would you do this I believe all I need to do is get the running workflow instance and then do AddService, but that might need to be done prior to the workflow starting. Thanks! No, Persistence and Tracking services can only be to the WorkflowRuntime when it is not started. For more information take a look at the Remarks section of the AddService method found here . ...Show All

  • Visual Basic Problems accessing remote registry

    Hi, I'm new to VB .NET (though I had been fairly familiar with VB 3.0 years ago). I'm trying to write a quick app to make a change to a remote registry and I can't seem to find much info on this that is consistent with how my VS .NET behaves. I've seen people making reference to code such as... regKey = RegistryKey.OpenRemoteBaseKey(RegistryHive.LocalMachine, pc).OpenSubKey(subkey) But it seems that making a call directly to "RegistryKey.Open...." is not recognized. I have to start with "Microsoft.Win32....". Perhaps a setting that I have wrong or something Or maybe I'm missing something from my project I keep getting an error stating that Win32 is not declared, but I find no reference to that error anywh ...Show All

  • Community Chat Registry cleaners

    Can someone tell me where I can get a free registry cleaner that is compatible with XP Home edition that is as good if not better than Registry Mechanic ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Texture2D init problem

    Hi People, i'm trying to create a blank Texture2D but it crash on an InvalidCallException and i really dont know why, here's the piece of code : try { buffer = new Texture2D(graphics.GraphicsDevice, graphics.BackBufferWidth, graphics.BackBufferHeight, 0, ResourceUsage.None, graphics.BackBufferFormat, ResourcePool.Managed); } catch (InvalidCallException exception) { } i have tried multiple things but none have work, any help would be greatly apreciated Thanks Have you tried a 1 for numberLevels instead of 0 With a 0 my small little program crashes, too. Hajo ...Show All

  • Windows Forms image transparent background

    I want to add an .bmp image to a label. The image has a transparent background. When I add the image the transparent part becomes white. How can I add the image to the label in a way that the background will not turn white. thanks I am not sure what I did - but I converted the image to a png with one layer, and then set the transparency afterwords. It now has a transparent background. Thanks ...Show All

  • Windows Forms Switch Columns type in DataGridView

    Hi folks, I'm using DataGridView & BindingSource to represent a Dataset. Instead of one column i want to insert ComboBoxColumn. Is the best way to do it is: 1. Populate the DataGridView 2. Remove the column 3. Insert the ComboBoxColumn Or do you know a better way Thanks, Tamir. Thanks Wang. But i don't know if that what i'm looking for. (i can't just write that the column's type is ComboBox) Is there a way to insert my Column before the auto columns are been created Tamir ...Show All

  • Windows Live Developer Forums Is Virtual Earth Free?

    I Would like to use Virtual Earth in my real estate portal. Is it free or I have po pay Rumors Egad! :) http://www.microsoft.com/virtualearth/products/webservice/howtobuy.mspx . Internet applications (applications with anonymous users, such as a Web-based locator solution). Licensing for Internet applications has the following components: - Platform Access(1) - Usage ( per transaction only) I agree with you that the individual transactions (HttpRequests) are originating from user machines, not your server, but c'mon -- you have every means of tracking usage and limiting it's use. If you spin up a simple commercial Find Location site for example, and realize you're passing some identifier in eac ...Show All

©2008 Software Development Network