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

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

nrs420

Member List

jhayann
Bruce Adkins
jesuscheung
Mr Parker
BodeColander
Steve J C
Andrew Toner
Skafever
mxmissile
Wheelibin
André Alves
Ken Alexander
Polaris7*
Ruthc
Sharon277
JonathanHCarroll
27
SaxMaam
Qmar
whs45
Only Title

nrs420's Q&A profile

  • SQL Server Installing SQL Server 2005 Integration Services

    I tried removing and reinstalling SQL Server 2005 Developer Edition for three times, including "all-at-once" component installation and "component-by-component" and I just can't get Integration Services to install. Here is the setting: - I have WinXPPro SP2 - I had SQL2K and removed it - I installed SQL2k5 (as described above) I am getting the following error: Microsoft SQL Server 2005 Integration Services -- A component that you have specified in the ADD_LOCAL property is already installed. To upgrade the existing component, refer to the template.ini and set the UPGRADE property to the name of the component. This component of course is no ...Show All

  • Visual C++ Norton Windoctor found the following 2 errors and is unable to fix them

    "C:\WINDOWS\$NtUninstallKB898458$\ORUN32.EXE" cannot access a necessary file, "learn32.dll." "C:\WINDOWS\$NtUninstallKB898458$\ORUN32.EXE" cannot access a necessary file, "pctree32.dll."   The program ORUN32.EXE may be part of Microsoft Interactive Training for Windows XP. Or it may be part of another program that is causing the error message.   What 2 do To solve this problem, delete the folder: "C:\WINDOWS\$NtUninstallKB898458$\ or disable WinDoctor.    Next time you may want to find a better forum for such questions as it's not related to Visual C++.  ...Show All

  • Windows Forms Ctrl + Enter with a MenuStrip

    Hi, I was following a tutorial to try to make my own browser interface. I tried to implement the Ctrl+Enter in a Textbox to make like Internet Explorer to complete the address, eg.  google => http:// www.google.com  . The problem is that I cannot take the Ctrl+Enter keys event while I enable my MenuStrip (eg. File, Options, Help,....) as it makes the focus on the MenuStrip! When I "un-enable" or delete my MenuStrip, it works well. When try to replace the Control key by the Alt key, it works well too. There are no shortcuts keys in the MenuStrip. I tried with the e.Control and e.KeyValue = 17  items, but it stills makes the ...Show All

  • Visual Studio Express Editions Communicating to other apps...?

    Hello, Is there a way to communicate to other apps It doesn't have to be communicating communicate... What I need is this. I need to fill out a from another app. Then my app has to press enter. Yes, I think it's possible by "Sending" the keys. But the problem is when I try to get the result, let's say trajectory distance, then how am I going to get that It's in the program after you press enter. It displays it for you. How am I supposed to get this The text is in a colored background.... Should I use like text recognition I don't know! Any help would be appriciated!! Keehun Nam If they are on the same ...Show All

  • Software Development for Windows Vista Problems to see xoml graphically...

    I installed Visual Studio 2005 RC and on top of it the Workflow SDK from the PDC disc 4. After this I can create a workflow project. However when double-clicking on a xoml file I see the xml rather than the graphical representation. Any help is appreciated. Hi MetroP - Please note that WWF Beta1 is not compatible with Visual Studio RC build you found on the PDC "The Goods" discs. Thanks ...Show All

  • Visual Studio 2008 (Pre-release) What happened to CheckBox IsCheckedChange-event?

    Hi! I need to hook up to the IsCheckedChange-event, but it is not there Is there another similar event I can hook up to I am running Avalon CTP September. Henning Skoglund Can you explain further how I listen for a property change-event I have the checkbox inside a datatemplate which displays messages from a SQL database. It seems the "click"-event is never called nor "Unchecked", but "Checked"-is called I cannot figure this quite out.... Henning S. [code language="xaml] < Grid.Resources > < DataTemplate x:Key = " BeskjedItemTemplate " > < Grid Style = " {StaticResource BeskjedStil} " ...Show All

  • Windows Forms Adding nodes to a treeview dynamically

    Hi I have a main Form with a treeView...and some nodes which are populated from a database....I have an Add New Node Form with an add method  that adds a new node to the database...Obviously I have to reload from the database before I see the new node added. Now I want the node to be added dynamically...... This is in the Add form that&n ...Show All

  • SQL Server Un-detected deadlocks?

    Hi, I seem to have a problem that might be caused by undetected deadlocks on my system which is causing regular minute-long freezes. The way to resolve the problem is to reboot the SQL Server box, but this is inconvenient as it is a production system, and I was wondering whether any forum users might have any insight into this problem Details below: We have a main and a standby SQL Server 2000 enterprise edition installation (service pack 3) running on Windows 2000 service pack 4. It has a service application (the "Eeams" server) with 21 threads connecting to it, one of these being called the "chain" thread (just a ...Show All

  • Software Development for Windows Vista WinFX RTC December 2005 Not working with December Vista SDK

    I have tried most of the solution on this thread but it still does not  work for me.  I running this on win2003 sp1 any suggestion Thanks Teddy, I received the log you sent me and assigned it to one of our testers. I'll post and reply to you when we figure out what was going wrong for you.     ...Show All

  • Windows Forms How to get the textbox of a combobox control?

    I have a need to operate on the textbox of a combobox control. I looked thru MSDN doc but could not find a way. I wonder if it is totally possible... This is not possible. Contrary to popular belief (and common sense), the combo box does not contain a textbox control within it; the entire combobox is implemented by the operating system as a single control, not a combination of other controls. The only methods available to operating on the text portion of the control are what the combobox class provides. ...Show All

  • Visual Studio Express Editions keypress......please help

    hi guys I have asked this question before with no satisfactory response....... can anyone please explain this to me ........................................................................ I am making a simple animation in vb express.............yes...I know vb is not ideal for game making...but I dont know c++ or c sharp..........so I am stuck with vb.... my problem is this.... when I press a key to move a graphic everything is fine....but if I hold the key down everything else on the screen freezes.....except my little animation ... which flies across the screen........ so how do I stop the keys from repeating ...Show All

  • SQL Server date field select help

    Help, I've got a field in this format that I can't break apart. 05/30/2005 00:00 00 I need to select records with this field greater than 02/01/2006 without disturbing the field, can i do this select in SQL Even with the hours/seconds in there Thanks, Scooter select Convert ( datetime , STUFF ( '05/30/2005 00:00 00' , 17 , 1 , ':' ), 101 ) from the inside out. . . replace the 17th character in a given string with a ':' use convert function to change to a datetime, interpreting the output of the stuff with format 101     ...Show All

  • Smart Device Development .NET Compact Framework Version 2.0 SP1 Beta is now available

    List of new features and bug fixes: http://blogs.msdn.com/netcfteam/archive/2006/04/21/580901.aspx Download location: http://www.microsoft.com/downloads/details.aspx familyid=6548dd53-a418-42d9-a481-19ba3ceca1a6&displaylang=en Finally! I've been holding off using CF2.0 because I need to support WinCE 4.2. I just installed VS2005 the CF2.0 SP1 Beta but now I'm not sure how to create a wince 4.2 project. The Smart Device project types (that I see) are PPC2003, Smartphone2003 and WinCE 5.0. Should I use one of those types or am I missing something Thanks in advance for your help, Chris ...Show All

  • Visual C++ VS2005 unnecessary build for project

    In a solution, a particular project appears to Build for no reason which I can discover when I choose Build. Is there any way to determine why the IDE Builds a project, in other words why it is deciding that it needs to actually do anything when one chooses to Build Can a makefile be generated from within the IDE for a project or is there any way to get the IDE to show something which will lead me to discover why it is Building In this project the IDE will actually compile the source files, not just do the link, when it appears to be totally unnecessary. This does not happen all the time but intermittently. If I can understand what it is fin ...Show All

  • .NET Development This must be a dumb question

    I'm very new to XML and am completely confused by namespaces.  I've created a schema and xml data file but I'm having problems validating the data, I get the error "Visual Studio could not locate a schema for this document". Here's a cut down copy of the schema and data file.  I hope someone can show me the error of my ways! < xml version="1.0" encoding="UTF-8" > <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">     <xsd:element name="GEMM_ConfigData">         <xsd:complexType>             <xsd:sequence> ...Show All

©2008 Software Development Network