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

Software Development Network >> Nick Darnell's Q&A profile

Nick Darnell

Member List

Phil Wasserman
cliff2006
aloysiusf
arti_z
zhangshaolin
ckara
Neo_xx
Mike Hardy
Moso
arjunan
Maytel
awaterman
AjmalAmeen
zul_slider
Wout
JTai
Naive
almargob
Pewal
obiwanjacobi
Only Title

Nick Darnell's Q&A profile

  • Visual Studio Team System After cancelling installation of ATDT server, what do I delete to reinstall?

    I cancelled installation of ATDT server install and installation rolled back. Before I try to reinstall ATDT server install, I had to manually delete all 6 DBs in SQL 2005. I believe rolling back installation doesn't clean up registries or leave something uncleared, which might cause installation to fail. Is there any other step I need to do (delete something other than Yukon dbs) before I reinstall server Please anyone~ Don't know for sure, but in previous versions of the install you also had to delete the directory share that is created for the workitem attachments on the AT server. After uninstall I wou ...Show All

  • Windows Forms Error while accessing value of the control

    Hi, I have two combobox filled with data in a window form. I also have one more window from in which I have declared two variables. Now my requirement is that how can we access selected value from the combobox in first form to the valiable declared into second form. How can we access selected value of the combobox from any place in the working application. If possibe please provide some example. Thank you Hi, I have used following code: dsYear = Some Provider.ExecuteDataSet(System.Data. CommandType .Text, "Select distinct trim_year from VehicleTrim" ); this .bindingSource1.D ...Show All

  • .NET Development How do I catch 'System.Data.NoNullAllowedException' exception?

    I can't seem to catch this exception. What am I doing wrong Public Sub PatientBindingNavigatorSaveItem_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PatientBindingNavigatorSaveItem.Click Try Me .Validate() Me .PatientBindingSource.EndEdit() Me .PatientTableAdapter.Update( Me .PatientDataSet.Patient) Catch exp As System.Data.NoNullAllowedException MsgBox( "Must be '01/01/1901' if BirthDate is unknown" ) Finally PatientBindingSource.Current( "BirthDate" ) = DefaultDate End Try End Sub Perform a GetType on the ...Show All

  • Visual Studio Express Editions Best Control To Use For Text/Graphics page that will be printed

    Sorry for all the questions, I am new to VB and having trouble finding satisfactory answers to some questions. The application I am making is going to generate a contract to be printed. The contract will contain dynamic text from a setup form, fixed text and some graphics (like a company logo). Should I Create a windows form and add the images and various text to that and then print the business area of that form One problem I have is that I don't know ahead of time the exact length of some of the text...it will fit on one page, but the length of some sections will vary and I'd like to avoid large gaps between the text. I've been ...Show All

  • Visual C# Icon

    Ok. I have no problem setting the icon I want for my program. But when I install the program on my machine, it has that box with a play button on it, as its icon. I do I change this Hello, Did you set the icon in the project properties (applications - resources) A single Icon can contain different sizes and color depths in one single ico file. On internet you can find applications that help you creating these icon's. ...Show All

  • Visual Studio Express Editions Check if textbox is a Valid Integer from 0 to 10000.

    How can I check if a textbox contains a number that is a valid integer (just numbers) and that its a number from 0 to 10000 The way i did was in loops which would freeze the program for a few seconds. Any other ways first use int.tryparse to see if it's a number. Then check if that int is in the range you want. Or, use a masked text box to specify the input range you require ...Show All

  • Software Development for Windows Vista Are the Routing Compartment API's implemented?

    I am trying to use the routing compartments, and the only way to use it seems to be via the routing compartment fucntions in IP Helper api's: http://windowssdk.msdn.microsoft.com/library/default.asp url=/library/en-us/iphlp/iphlp/ip_helper_functions.asp I downloaded the January CTP Windows SDK and looked at the IpHlpApi.h but could not find the function protoypes! - Is there a 'newer' Windows SDK out which has this implementation - Is there any other way we can use the routing compartments - Can someone please tell me where & how to report this to the appropriate team thanks, Romil Please try the Beta 2 ...Show All

  • Visual Studio Team System Multiplying large Int64 numbers.

    When multiplying very large Int64 numbers, I've noticed some strange results. For example, in C# .NET:    Int64 lngNumber;    lngNumber = 4611686018427387904;    lngNumber = lngNumber*2;    Console.WriteLine(lngNumber.ToString()); Outputs     -9223372036854775808 Changing the multiplier to 3 as follows:    Int64 lngNumber;    lngNumber = 4611686018427387904;    lngNumber = lngNumber*2;    Console.WriteLine(lngNumber.ToString()); Gives     -4611686018427387904 Changing ...Show All

  • Visual Studio Express Editions C++ NO OUTPUT....??

    I have started a file practice.cpp under an empty project. I just wanted to test and see if i could make my first program and display the words "hello world" to the screen here is what i wrote #include<iostream> using namespace std; int main() { cout<<"Hello World"<<endl; return 0; } now what happens is that it builds correct and when i hit F5 to run the program i get the error "UNABLE to start program C:\practice.exe the system cannot find the file specified" can anyone help Hi! Are you sure there was no build e ...Show All

  • Visual Studio Tools for Office renaming an Excel sheet

    Is it possible to rename an Excel sheet using Visual Basic 2005 This is the only thing I haven't figured out yet... Excel.Worksheet week1 = (Excel.Worksheet)ExcelApp1.Worksheets["Week 1"]; week1.Copy(Type.Missing,week1); // calls it "Week 1 (2)" ... so how to rename it Excel.Worksheet week2 = (Excel.Worksheet)ExcelApp1.Worksheets[1]; week2.Name = "Week 2"; Here's the code if I try to rename a sheet. There's no errors, but the name is never changed. ...Show All

  • Windows Forms Command Line output from Winform app

    Okay, call me slow or something. I'm trying to see my Console.out.WriteLines outside of the IDE. So I open a command prompt and start my application c:\myapp\bin>myapp.exe But no output shows in my command window. Am I missing something here   If you're building a Windows Forms app, console output will appear while it's running inside the IDE (courtesy of the debugger...), but not when you're running it as a standalone app. Only Console Application projects will do their I/O via the system console. Depending on how complex your windows forms app is, you may be able to just switch your project type (console apps ...Show All

  • Visual C# Database connection Dilema

    Hi I am working on an application with two main parts. The first part is the database I am connecting to and the second is an activeX control. I am also using SQL 2005 Express as my database server. The way I have incorperated the database into the app is by using a auto-generated dataset and table-adapter and then doing the rest of the coding myself. My app has to do a few simple queries and occationally write some information to the database. The dilema comes from the activeX control. The AX connects to a servlet. This servlet must also connect to the same database as my application, but when the servlet attempts a connection it bounces b ...Show All

  • Visual Studio Team System please help with web recorder

    Hi! I'm trying to record webtest. 1. Create new web test 2. Window of recorder (IE) does not appears 3. Script is not recorded What solution can you suggest to resolve this problem Thanks for your reply! I'm wondering if the recorder has started but is hiding behind another window. Does a web test open in the IDE with a status bar across the top that says "Recording..." If so, does a link appear on the web test status bar that says "Show recorder" If so, click this link and see if the recorder appears. Thanks, Rick ...Show All

  • SQL Server Distributing database with app

    Sorry if this something beaten to death already... What is/should be required for a target client machine to use and connect to a local copy of a SqlExpress database Can't seem to get a db connection established to a different machine through a VB6 app. Installed the sql native client on the machine, but still can't connect. What am I missing, or do I have to distribute/install the entire SqlExpress client Working fine from my development machine. Rick If you are connecting via TCP/IP you have to enable these protocols. You also have to ensure to enable remote connections. HTH, Jens Suessmeyer. --- http://ww ...Show All

  • Visual J# Error Configuring Web Site

    I am using Visual Studio 2005 Beta 2 - I have completed Soup-to-Nuts 1 thru 9 doing them in Visual J# and have had to create all added code and files that appear from one lab to the next, not to mention the problems with the differences in ADO .Net with datasets and table adapters anyway I have go thru that, now Lab 10 deals with Web applications so I decided to revist the Lab "Creating ASP.NET Web Applications with J# - Part 1" I had already done this virtually with VS 2003 but now want to do it on my machine using VS2005  -  I am running into a problem right away   for create new project it ...Show All

©2008 Software Development Network