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

Software Development Network >> D.Candia's Q&A profile

D.Candia

Member List

tickko
Whitney
Mark Ramey
David Lanouette
IIISephirothIII
Olivier Sanzot
rainersimon
iamhtran
GrijzePruik
Ducbian
LMiranda
seand_03
Rolando Maradiaga
Chad Scharf
rax_uk
Ages_04
FireWave
Buda56
Kareem Shaker
DaCracker_2005
Only Title

D.Candia's Q&A profile

  • Visual Basic DataGridView Delete Row Confirmation

    Trying to handle the deleterow confirmation, and i might be going about it the wrong way but here is what i have so far... problem is. it doesn't handle the delete key. i have tried keys.back, keys.delete and they both only respond on the backspace key, not the delete key. do i need to handle this even witht hte datagriduserdeleting row event instead Public DeletePressed As Boolean = False IF Private Sub CompaniesDataGridView_KeyDown( ByVal sender As Object , ByVal e As System.Windows.Forms.KeyEventArgs) Handles CompaniesDataGridView.KeyDown If e.KeyCode = Keys.Back Then DeletePressed = True E ...Show All

  • Visual C++ warning C4996: 'foo' was declared deprecated

    It appears that several standard C and C++ functions have been 'deprecated' in this version of compiler. This is a major annoyance since neither C nor C++ standards seem to mention this.  Naturally, it is possible to disable unwanted warnings, however doing this manually for every project is a pain in the arse. Is there a compatibility mode Thanks, - NK This is a request for future versions of c and c++ compilers. Because these languages defined by ANSI/ISO standards, the only organizations that can declare c/c++ library functions to be deprecated are ANSI and ISO. I'm requesting that Microsoft pleas ...Show All

  • Software Development for Windows Vista Custom Activity - Probelm with EventSink Activity

    Hello, i tried to model a custom activity. This activity does contain of a) InvokeMethod Activity b) EventSink Activity out of the activity galery delivered. I also implemented a Service which I added to the workflow engine in order to connect the method invokation and the event sink. Then I build up a sequntial wf out of my custom activity. The method invoke activity within my custom activity works properly, but when my async. operation is finished and I want to raise the event to trigger the eventsink activity the event within the added service was null. The same scenario works fine when i model this directly within a sequential wf. Regar ...Show All

  • Windows Forms vs 2005 - DataSource property for labels and textbox gone from properties window

    I may be missing something really obvious but when upgraded to vs 2005 the standard label and textbox controls don't seem to have datasource / datamember properties anymore. Why is this You should probably try the ASP.Net forums: http://forums.asp.net/ mark ...Show All

  • Visual Basic VBUpgrade utility problem

    I am trying to upgrade a vb6 project to vb8 (Visaul Studio .NET 2005) and the wizard displays the error message: Upgrade Faile: Exception Occured: Invalid System Configuration (unable to locate Microsoft.VisualBasic.UpgradeExtensions.dll) Please run setup again. Well, I did, and the problem remains. Also, I tried using regasm.exe and registering manually the dll but the problem remains. Also tried to use the command line - same problem. I had the VB 2005 Express prior to VB 2005 Pro installation which I removed after installing VB 2005 Pro, but I have re-run setup several times. I'm really ...Show All

  • Visual Studio Team System Problems with Setup

    OK, I know the score, read the documentation at least twice before installing and I did. I was still caught out and it cost me a lot of time. Here's the problem. Doing an installation on one of my servers using separate data and application servers. Everything is done inside Virtual Server as with previous versions and I expected no problems. The data layer went in exactly as described and I ticked off each paragraph as I completed it. The application layer was going well until it started throwing a 7 line error message. It looked like a permissions problem so I checked that the tfssetup and tfsservice accounts were not only members of the l ...Show All

  • Visual Basic How to make slideshow transition with Picturebox

    You've seen those fancy wipes, fades, cut and swirls in slideshows... now, how do you do it with the Picturebox It's incredible how many people mistake the picturebox control for a paint program, or for Powerpoint. You can't.  A picture box is there so you can show a picture without writing the two lines of code required.  If you want to do more, you'll need a lot more than those two lines, you'll need to write these sort of transitions for yourself.   ...Show All

  • Visual Studio 2008 (Pre-release) Getting Started sample not getting service.exe

    Hi, Well, I have been trying to get this first sample "Getting Started" going for a very very long time, and so far, I've been pulling my hair out just trying to figure out what is going on. My question is, when i compile the "Getting Started sample" which is from WIndows SDK, it compiles fine, and I find client.exe but I can not find service.exe anywhere. Neither under Getting Started/service/bin folder which produces service.dll file and service.pdb nor under wwwroot/servicemodelsamples/bin directory. I got the console based sample going but I really want this IIS based samples to work as well. Any help woul ...Show All

  • Visual Studio Tools for Office Outlook 2003 Resets Plugins

    There are two computers each with Office 2003 SP2 that resets the plugin list when the user logs off. It doesn't just uncheck the plugin, it removes it from the list. It is a plugin for a DYMO labelwriter. The plugin is also installed in Word 2003, but it does not reset like Outlook. If there is no quick fix to this problem is there a script or a form of automation that will install the plugin on start-up Thank You, Sean Sean, Were you able to find a solution for these plug-ins thanks, scott ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. new to C++ need help programming with directx

    hi first off i just want to say i am a new member and i love the site    I am a programmer learning C++ and i stumbled upon directx  i have version 9.0 with visual studio.net 2003.  Please if anyone has the time and would like to help me learn and set me off in the right direction i would be very thankful i was on this website and it was saying to learn the directx API's.  how and where are the API's located in the sdk.   thank you for spending your time helping me. Welcome to the forum firstly. I hope you enjoy the directx and more specifically direct3d as much as all ...Show All

  • Visual Basic ActiveX, COM replacements in .NET Framework - Visual Basic 2005

    Would anyone know what the .NET Framework has as a replacement for Control Objects or Components in Visual Basic 2005   I need something that was similar to the ActiveX Objects in VB 6.0.  How can I achieve a similar end-result even though the platform has changed. Thanks.     All of those object are still useable and accessible through vb2005 provided that they are on your system. Use Project | Add references and you can add .Net and Com objects and/or browse for any dll on your system. ...Show All

  • .NET Development How to implement transactions using tableadapters?

    The old dataadapter had a transaction object which you could assign to a .NET SQLtransaction. This made transaction handling very simple. What is the equivalent (or similar) method for handling transactions using tableadapters I'm using the table adapters generated by the data designer. dataadapter has no transaction property which can be assigned to a sqltransaction. You could use System.Transactions.TransactionScope to simplify the transaction handling if you have only one conneciton opened. ...Show All

  • SQL Server Accessing Mobile SQL Databases in VB2005 - Windows Apps

    I have both used the Data Connection Wizard and tried programatically to connect to a Mobile SQL Database from within a Windows Application and keep on getting the same Error at the connection point "Unspecified error [ sqlcese30.sys.dll ]" The Debug message is " A first chance exception of type 'System.Data.SqlServerCe.SqlCeException' occurred in System.Data.SqlServerCe.dll" I have added a reference to C:\ Program files\Microsoft Visual Studio 8\Common7\IDE\Public assemblies\System.Data.SqlServer.Ce.dll. I need to access the data from the pocket pc on a desktop computer. Is this possible under VS2005 using VB or do I in actual fact need to ...Show All

  • Visual C++ Compiling with Platform SDK - doen'ts understand BOOL and WINAPI etc.

    I downloaded VC++ 2005 Beta 2 & the Platform SDK. I'm having trouble compiling. I generated a console application. My program has this include: #include "stdafx.h" Inside sdtafx.h I have this code: // stdafx.h : include file for standard system include files, // or project specific include files that are used frequently, but // are changed infrequently // #pragma once #define WIN32_LEAN_AND_MEAN        // Exclude rarely-used stuff from Windows headers #include <stdio.h> #include <tchar.h> // TODO: reference additional headers your program requires here #include <psapi.h> When I try t ...Show All

  • Visual C# How to know installed application in the system

    Hello,    i want to know all installed application in the system( It mean in my PC) using c#.       As well As hoe to know where is there .exe is located.     (It means wheather it is on c drive or d drive, 99% apllication is on C:/program file but for more accuracy i need to check this )          thanks     ...Show All

©2008 Software Development Network