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

Software Development Network >> David Gutierrez's Q&A profile

David Gutierrez

Member List

Balaam
Janne W
Stan Burton
Stewart121839
vnpro
Celal Ak
Earl Jr
George Oakes
Prams
mamo
Hatawa
Andrey Belkin
Muhammad Irfan Azam
SIFIS
Jeffrey D. Baker - MSFT
Wolly80
abazovic
Paul Raj
sheriffdaone
Hakan at devBiz
Only Title

David Gutierrez's Q&A profile

  • Windows Forms Trapping CTRL + B etc events

    How do I go about trapping multiple events like CTRL + B, CTRL + U. I know there is a way using ProcessDialogKey but am not being able to work that out. Any help would be great Thanks Sergey - that's what I was looking for... didn't know you could do this: KeyDown += new KeyEventHandler(OnKeyDown); Cheers, Mike. ...Show All

  • Windows Forms How to Export Data from Excel Sheet to Access

    Iam facing a huge problem here when i try to export the data from excel sheet to an access db, i have worte the code which reads the data from the Excel file into a datagrid but my problem now that i don't know how i can get the data from the datagrid into the access db i have tried to use a select/insert commands to read and fill the data directly to the access db but it didn't work and always gives me an err, so is there anyway to do this Show us your code for inserting in the Access DB and let us know what kind of error you are getting. Then maybe someone can help. Tony ...Show All

  • Visual C# help me (dll problem)

    i have made a WindowsControlLibrary (dll file) (i made a winform and then copyed every thing (almost) to the control ) but every time i try to load it with asp.net nothing happens the asp.net file : public class WebForm1 : System.Web.UI.Page { private void Page_Load( object sender, System.EventArgs e) { Assembly a; a = Assembly.LoadFrom(@"C:\saa1\vc#\WindowsControlLibrary2\bin\Debug\saa2.dll"); Type t = a.GetType("WindowsControlLibrary2.UserControl1"); Object obj = Activator.CreateInstance(t); } and the control file: namespace WindowsControlLibrary2 { public class UserControl1 : System.Windows.Forms.UserControl ...Show All

  • SQL Server How to install sql server 2005 developer edition over sql server express.

    Hi, I have VS 2005 team suite , msdn , vss and sql server express 2005 edition installed on my windows xp system. Now I want's to installed sql server 2005 developer edition instead of sql server express edition.Also I have some important Databases so i don't want's to delete them want's them to be appear in sql server 2005 developer edition(which I am going to install.(I don't want's the sql server express instance) I have copied files from sql server 2005 developers edition dvd to my system.It contains two folders 1,Servers 2,tools and a file named autorun.inf which contains text [autorun] shellexecute=Servers\splas ...Show All

  • .NET Development Web Service - Visual studio.net 2005 , No option of creating web services

    Hello, Using VisualStudio.net 2005 I want to create a web service. When I select new project there is no option of creating a web service. Good morning ! You go to File -> New -> Web Site -> ASP.Net Web Service. I think this will help. Roxane ...Show All

  • Visual Studio 2008 (Pre-release) AddVisualChild question

    I have a design where I want to load a visual dynamically from an assembly (a plug-in system). I won't know which assembly or namespace ahead of time, so this has to happein in code-behind and not in xaml. I have created a class that derives from FrameworkElement called PluginHost. PluginHost loads the visual from the assembly and creates it just fine, but I can't figure out how to get the visual instance added to the PluginHost. AddVisualChild doesn't seem to do anything. VisualChildrenCount still shows zero and nothing appears after the call. Can someone help To add visuals to your class you need to ...Show All

  • Smart Device Development _AFX_NO_PRINTING_SUPPORT and MFC8 for WinCE

    now in the MFC8 the _AFX_NO_PRINTING_SUPPORT is defined and all the printing mng is not available anymore for MFC8 under WinCE (for Example the definition of the CPrintInfo, all the BeginPrint etc for the CView is missing). I've ported an application from EVC4 that was using these functionalities Now, instead of hacking my MFC8 version (recompile it for every) I'd like to know if this is going to be implemented again in the next upcoming service pack or not thanks I can not see that it is defined. I see that there are #ifndef _AFX_NO_PRINTING_SUPPORT, but since this is not defined ...Show All

  • Visual Studio 2008 (Pre-release) Service Identities in February CTP

    What exactly is the relation between following identies in the context of a WCF service: System.Threading.Thread.CurrentPrincipal.Identity ServiceSecurityContext.Current.PrimaryIdentity ServiceSecurityContext.Current.WindowsIdentity Are they all referring to the same identity when a service is configured with Windows security Thanks. I had a different story. I configured IIS to be the host and it is running under ASPNET on xp. The virtual directory for WCF service is set to both anonymous and integrated windows authentication. The service method is not enforcing impersonation through attribute or coding. The service is set to message ...Show All

  • Visual Studio Tools for Office Publish to SharePoint?

    I'm feeling a little foolish for not being able to figure this out, but I've built a Word application and I need to be able to publish it to SharePoint. I would have thought this would be trivial, but.... Any help would be appreciated! Thanks! Brad. These two MSDN articles provide great information on deploying VSTO solutions. Thanks! Mike Hernandez Community Program Manager VSTO Team VSTO Deployment These whitepapers are interrelated, so be sure to review both of them. · Overview http://msdn.microsoft.com/office/default.aspx pull=/library/en-us/odc_vsto2005_ta/html/office ...Show All

  • Visual Studio Express Editions .Net Framework 2.0 Fails Installation

    I am having extreme difficulty trying to install VB 2005 Express Edition. The software appears to install ok until near the end when the log shows the 1603 error. I am running winxp on a Inspiron 6000. .Net Framework 1.1 is installed, but I have read should not prevent 2.0 install. .Net framework 2.0 beta has not been installed and there is no evidence that it has. The failure seems to be in the .Net Framework 2.0 installation. It fails due to an internal exception during install operation: 0xc000001d at 0x746A8C34 (See Log). I think the "1D" error is STATUS _ILLEGAL_INSTRUCTION. I have tried numerous things I saw in other posts to ...Show All

  • Visual C# Issues with service uninstallation

    Hi, I have written a service using C# then linked an installer to it as per article: http://msdn.microsoft.com/library/ url=/library/en-us/dnvsdev05/html/vs05d1.asp and everything is OK as far as the installation is concerned, the service also starts and stops as expected. However, when I try to uninstall the service, the installer removes all the files associated with the service as expected, but does not remove any of the corresponding entries from the registry. I am therefore left with a machine where the registry no longer matches what is installed on the machine. The only way to fix it is to manually remove the entries from the re ...Show All

  • Windows Forms statusbar panels question

    Is there some way to change the forecolor of the text in a statusbar panel  I only want to change one panel's color during runtime. Also, how would I set the text to blink using a timer Thanks. Rayne Jacob: Great idea! I have a few classes for various status panel modifications. Just too lazy that morning to work out this one. Thanks ...Show All

  • Visual Studio Express Editions Convert std::string to LPCWSTR (best way in c++)

    Hi! How can I convert an std::string to a LPCWSTR What is the best way to do it in C++ Thanks. "Ciao guaglio!" FabioDeSantis wrote: How can I convert an std::string to a LPCWSTR What is the best way to do it in C++ Instead of using a std::string, use a std::wstring (also called a std::basic_string<wchar_t>). I get the feeling you want to pass a std::string type to a Win32 API. Those APIs don't take LPCWSTRs (or even LPCSTRs), they take a LPCTSTR (long pointer to a tchar-string). In this case, your question should have been: "How do I convert a std::string to a LPCTSTR " Inst ...Show All

  • Visual Studio Team System Need automatic notifications of bugs and work items via emails

    We've got two offshore teams using the Team Foundation Server remotely. Sometimes, it's not easy for them to access TFS remotely via Visual Studio due to connection speeds and disruptions of connection in foreign contries. It'll be great if automatic email notifications can be set up for Team Projects on bugs and work items so they could stay on top of their tasks/priorities. Individual users can sign up for Alerts on Work Item and Version Control changes by opening Visual Studio, connecting to the Team Foundation server. On the Team menu select Project Alerts ... This will bring up a dialog that allows the ...Show All

  • Windows Forms Custom Contro Icon

    Hi!! I have make an custom Control that inherits from textbox and adds it severar validation functions and maskedit.  Now I want to add a icon to this control to showit in the IDE ToolBox and add it to forms in design graphical  mode. How can I add a "toolbox Icon" to my control crazy, i wonder why they picked that&nbs ...Show All

©2008 Software Development Network