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

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

Denton

Member List

Calibus
keithGard
soldierboy101st
MWade_MS
URIKAN
l_m_o_o_r_e
Gem Lode Ranch
keredc
photek
rhombus
fabsecad
joebarthib
kolbis
Anshuman Srivastava - MS
Alle
shaherome
Perky Swenson
Dan Stevens
araus
BrianSquibb
Only Title

Denton's Q&A profile

  • Visual C# a bug in: ArrayList.Add()

    It seems there is a bug in ArrayList.Add(); i have created a loop that adds differents array's (string[]) in ArrayList property. ok, let say i call my ArrayList "something" then this is what happens in my code: if i use: something.Add(Array1); then it adds it normally. if i use it two times: something.Add(Array1); Array1[1] = "another value" something.Add(Array1); then it adds it AND overwrites the old value, so both 'something[0]' and 'something[1]' have the same values. If i use the method 3 times, like: something.Add(Array1); Array1[1] = "another value" something.Add(Array1); Array1[0] = "yet another value" something.Add(Array1); t ...Show All

  • Visual Studio Team System Web Test Connection Model and IP switching

    Can anyone provide more information or links which explain in more detail: 1: Connection Pool and Connection per user. Whats the advantages/ disadvantages of using either of these Also what's the optimum setting for WebTest Connection Pool size or what does this depend on 2: IP switching, with this enabled, which I think it is by default how does this work / is there any additional config required. What range of IP's does it use thanks in Advance, Phil How is a load test of a webserver cluster possible without such a feature ...... I don't understand Microsoft. :-( And why they have written about that this feature is included ...Show All

  • SQL Server Importing Tables with Identity properties (uisng Import wizard)

    I am using the Import wizard to import a SQL2000 database to SQL2005 and noticed 2 problems: 1. all tables and views were selected; the tables were imported correctly but the views were created as tables, ignoring the "Create view" syntax. The SQL generated contains "Create table" syntax instead of "Create View". 2. when a table contained a column with an "identity" property, the data was successfully imported, but the values for the "identity" column were not preserved, instead they were resquenced from 1 with an increment of 1 (the default values for an identity). When I opened the &q ...Show All

  • Visual Studio Express Editions How to I create a login form with visual basic express editions and mysql

    Hi everyone, I need some help here, I'm new with visual basic express. How to I create a login form with visual basic express editions and mysql. Anyone can help me For example : After I submit my Login ID and Password at "Form1". How to I connect it to mysql and pass the posted value into the mysql query to checked whether is a valid member or not. If is a valid member how to I create a SESSION to store the member details like "username" and "user ID" Then these values I able to use in Form2 or another. Someone can help me please ... !!! THANKS A LOT 1 - www.vb mysql .com/ is dedicated to connecting VB to MySQL ...Show All

  • Windows Forms Creating an Editable Label

    Need to write a custom control to allow in-place editing, similar to that in a word processor, but user could edit ONLY those underlined (or similar specially marked) words in sentences -- not to allow editing the whole sentence or page. Appearance should look like a hyperlinked label, but not to function as a hyperlink. As the user enters longer text than the original, all the text on the right side of it should shift accrodingly as in a word processor. Expected functionalities are: - By double clicking the underlined (or specially marked) words, user is allowed to edit that particular text. Existing t ...Show All

  • Visual Studio Unable to add deployment project to Sourcesafe

    Hi, I am trying to add my solution to Sourcesafe. I am doing this by opening the solution in VS and clicking 'Add solution to source control' at the solution root. It works fine for all of the projects under the solution except the deployment (setup) project. The following error is returned: The project <setup project path> cannot be added to source control. In folder <folder> it overlaps a project that is already bound to source control at a lower root. To avoid this problem, add the project from a location below the binding root of the source controlled projects in the solution. I understand that this error often ...Show All

  • Visual FoxPro MSGraph.Chart.8 control

    I need to make charts. I started with MSChart Control and so far I've accomplished almost all I wanted except for one thing which totally eludes me. I need a simple line chart, not columns or a pie. I need to display a row of data like DJIA or similar indices with no additional vertical bars or other embelishments. The curve comes out nice but a lot of space on the chart is wasted because the curve is being plotted too high on the chart in vertical direction. I have tried to manipulate MSChart.Object . Plot . Axis ( VtChAxisIDY , 1 ). ValueScale . Minimum value but it is not responsive at all. I do not know why: perhaps other paramete ...Show All

  • Visual Studio Express Editions Snapped windows?

    Hello I was wondering if I could "snap" windows on edges. So if I have two windows, then I dragged first to the second window's bottom edge, it will snap together... Then if I move the second window, then the snapped first window will follow. Think of Lego pieces. I've seen some software do this. But I don't know how to make this effect. Does anyone know how to do this Thank You so much! Keehun Nam   Dim FormLoc as point = me.location Al references in windows are to the top lefthand corner. Topright can be described by  Location.x + me.width, location.y Bottom left = Locat ...Show All

  • SQL Server Replication Isues After upgrading subscriber to 2005

    Hi There A while ago i migrated a 2000 database to a new instance of sql server 2005 and succesffully setup replication from a 2000 publisher. However to experiment i took an existing 2000 instance with a subscriber databases and upgraded the default instance to 2005. (Upgraded from 2000 Enterprise to 2005 Enterprise) After the upgrade the setup logs were all successful, i also run upgrade advisor before and made sure there were no issues. To see what happens i did not drop the subscription before upgrade (is this an absolute neccessity ) All i did was stop the distribution agent before upgrade, to see what would happen, i did ...Show All

  • Visual C++ Problem compiling a program

    How do I compile my code   When I open a file, it won't let me debug or run the file.  And if I manage to get that, as soon as it runs, it just says: Press any key to continue... then it quits.  windows.h is part of the PSDK headers which is not installed with the VC 2005 Express SKU, you will need to install it separately. Check the below link for more details on how to proceed: http://lab.msdn.microsoft.com/express/visualc/usingpsdk/default.aspx Thanks,   Ayman Shoukry   VC++ Team ...Show All

  • Visual Studio Express Editions Same subject but in Visual Web Developer express

    I have the same bits of code working as a web form and in VB Express but when I try to use this routine to tab to the next text box autotmaticaly on my web form, it does not work. Am I being stupid here Cheers DJT_UK Protected Sub TextBox1_TextChanged( ByVal sender As Object , ByVal e As System.EventArgs) Handles TextBox1.TextChanged If TextBox1.Text.Length = 1 Then TextBox2.Focus() End If End Sub I'll give it a go and let you know what happens. Cheers DJT ...Show All

  • Visual Studio 2008 (Pre-release) Is there a sample that uses ResourceDictionaryLocation.ExternalAssembly?

    The sample that specified ResourceDictionaryLocation.ExternalAssembly for ThemeInfoAttribute was not able to be found. I made MyControls.dll and MyControls.Luna.dll. The resource of MyControls.Luna.dll was not used though ExternalAssembly was specified. What is the name/location of the ResourceDictionary XAML file in your MyControls.Luna.dll System expects that the file will be in the "themes" folder and named according to theme and color scheme... Giving: themes/luna.normalcolor.xaml (default color scheme) themes/luna.metallic.xaml (silver color scheme) themes/luna.homestead.xaml (olive green scheme) ...Show All

  • Windows Forms Samples and Demos

    I was hoping that when Visual Studio 2005 Beta 1 came out there would be sample applications using Windows Forms 2.0 like the ones shown at PDC 2003.  Is there any planned release of Windows Forms 2.0 sample applications MadMax Hi MadMax, check out these Walkthrough: Smart Client Data in Visual Basic 2005 http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnvs05/ ...Show All

  • Windows Forms making application threadsafe

    Hi, I have a multithreading application in which I am using a control to which I add datapoints to plot a graph. There are various functions in the application that adds or remove points in the control, and these functions can be executed by more than one thread at a time, as  a result I get multithreading error randomly , such as   Syst ...Show All

  • Visual Basic "hello world" won't run

    I am a newbie who just downloaded visual web developer 2005 express on my xp home system.  It installed without errors as far as I can tell.  Is express really stripped-down, and they don't tell you what is missing Like this "hello world" program example:  I can't paste the example page here, Right-click WON'T LET ME! Anyway, the page says "create visual basic console application project".  The closest I could find was a "create text template"  So I pasted the example code on that.  Then it says choose the appropriate "build command".  The choices I get are "build selection" or "build solution".  ...Show All

©2008 Software Development Network