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

Software Development Network >> James Lin's Q&A profile

James Lin

Member List

Phattim
GennadyR
The Happy Friar
Debbie Aarvig
12miguel34
MarkD84
SusanJ
duggant
ZZia
akselduus
kingswood
pjencyjoy
TheViewMaster
Andr Big
h_01cs25
JCichocki
jamesh1971
Ray Seppala
Mary Waller
Indigo Cowboy
Only Title

James Lin's Q&A profile

  • Visual Studio Team System TFS Not Ready for Prime time...not even close...

    I hate to say this but TFS has to be the worst application install I have ever seen. The documentation is lacking and the entire thing feels like a kludge. I cannot imagine this being ready any time soon. Many of the same bugs I saw in previous versions are still there. Just bad. After 7 reinstall attempts (because of many different reasons...one of which was that the TFS accounts ALL need to currently be admins or it wont work!) I finally got it to work. But only when I went with an ActiveDirectory structure would it work. No way would it work properly in a work group. Now after slaving to get it working, I find that it has bad performance ...Show All

  • Visual Basic How to manage / call methods, procedures, forms in multiple Modules, classes, ect.?

    Hello and thank for the help. I am such an amature. Can't find the right books either. I have created a windows form, and a lable array class and a sub main in a module   BeamCalculation is a form Label Array is a class Calculate is a Module   I am trying to run my program from the Module, I din BC as New BeamCalculation withthe hope that I can use BC throughout the module to perfor data and controlminipulation, A Dynamic Form that I change according to the calculation tye. I am getting 2 errors at line 15. 1. An unhandled exception of type 'System.NullReferenceException' occurred in Beam Calculations.exe ...Show All

  • Visual C# Socket question.

    When I close a socket in the server side, I found the client will receive some empty data automatically, even though I haven't sent anything in my code. I also found that some empty data will also be sent to the server automatically if I close a client side socket. These two cases could be reasonable since there may be some acknowledgement to be sent arround. Upon closing a server side socket by calling its Close(), it's wired to see that ReceiveDataFromClientCallBack() will be called id the socket is a work socket. And the AcceptClientCallBack() will be also be called if the socket is a listner socket. Anybody can explain this T ...Show All

  • Windows Forms ListBox MultiSelect

    Hello, I have a listbox, from where I have say 3 items selected, how can I find which are selected.... for(int i=0;i<myListBox.Items.Count;++i){     if(myListBox.items[ i ].selected == true){           //code to process for each selected item goes here     } } HTH, ...Show All

  • SQL Server Can Use Fieids of diffirent datasets in a matrix ?

    Can Use Fieids of diffirent datasets in a matrix SUM(Fields!a.value) is invalid Field a is in the other dataset!  This relates to a similar post of mine... Is it not possible to dynamically decide which dataset a table will use ...Show All

  • Visual Studio Express Editions Form menu problem

    Hello people, I'm creating a form here on my Visual C++ Express, and after creating a menu and insert some options on it this happens when I try to save form.h: "Code Generation for property 'Items' failed. Error was: 'Could not load file or assembly 'Microsoft.VisualStudio.Design, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.' Does anyone had a similar problem or knows the solution Thank you Bruno Sanches Try this: http://blogs.msdn.com/astebner/archive/2005/10/14/481309.aspx ...Show All

  • Visual Studio 2 Patterns for single Crystal Report (rpt) file

    Hi everybody, Is it possible to display two different pattern of reports and must be on separate pages First Page displays a summary, second page displays details and other info. Having problem doing this placing except for company details on page header and the rest on the Details part of the report. Pattern: First Page: Company Logo Company Name Company Address Statement of Account Statement Date: (system date) Period Covered: (date from filter page) Control Number (data from db1) Company: (company name from db2) Address: (address from db2) Total Balance ( ...Show All

  • .NET Development Program running at HI memory usage, please HELP!!!!!

    Hi, I'm using vb.net 2003. Something is not making sense while my program is running. While my program is running, and I open the Task Manager, the Memory Usage of my program start running sky-hi. Something isn't right, a program that's nearly 2MB in disk size, can't use 400MB RAM can someone please help me in sorting out the problem... Thank You You can have a 1kb program that uses 1gb of ram. I don't see why this would not be normal... If you wan't help then tell us what you are doing in your program. ...Show All

  • Visual Studio Express Editions Cannot get cd to autorun

    I am using VB Express to create an application and am pulling my hair out trying to get the cd to autorun. Using Project->Properties->Publish and then Options... I have checked "For CD installations, automatically start Setup when CD is inserted" In the publish folder, it creates an Autorun.inf file that contains: [autorun] open = setup.exe icon = setup.exe,0 Then, using Iomega Hot Burn Pro I add all of the files in the publish folder to a cd and burn the cd. When I insert it into any one of multiple different PCs nothing happens. I have verified that all of the test PCs have autorun enabled by insertin ...Show All

  • Visual C# Calling a instanced method from static method

    Hi all, How to acess a instanced method from a static method without creating an instance of the class public class TestingClass2 { [STAThread] static void Main() { SampleTest2(); } private void SampleTest1() { } private static void SampleTest2() { new TestingClass2().SampleTest1(); } } Thanks for replying, Yeah i understand that, but still i can have a static object property and assign the instance of my class to the property, then call the property inside my static method. I thinks this is one solution available.   I need a better solution than this.(By using delegates or some other way is this possible). ...Show All

  • Visual Studio 2008 (Pre-release) Multiple threads, UI, and images

    I'm currently trying to write an application that dynamically loads images in a background process in order to eventually display them on the UI. Essentially, my background thread creates objects that inherit from System.Windows.Media.Brush or System.Windows.Media.Drawing so that my UI can redraw itself using these objects. When running my code, I receive an InvalidOperationException with the explanation of " The calling thread may not access this object because the object is owned by a different thread. ". This appears to be behavior for any class that derives from System.Windows.Threading.DispatcherObject. My question is, how can ...Show All

  • .NET Development why does IDictionary extend IEnumerable?

    public interface ICollection : IEnumerable public interface IDictionary :ICollection, IEnumerable ICollection already extends IEnumerable,why does IDictionary extend IEnumerable Hi Because when u itrate in a Collection you can not Add/Delete items to the Collection but in Dictionary you can. So to implement uodation while in itration they have implemneted IEnumerable in IDictionary ...Show All

  • Visual Studio 2008 (Pre-release) Connected Party did not Properly Respond After a Period of Time

    I've begun to expand the WCF services in my application and I'm starting to get a timeout error: System.Net.Sockets.SocketException: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. I have a number of data services that download lists of business objects of various kinds. This error seems to occur after about 7-8 different service calls to download data. It is not a problem with a particular service - because I can change the order that the services or accessed, and the problem always occurs after a ...Show All

  • Visual C# I try to exercise a sample in Visual Web Developer 2005 Express help, why do I always get the error "Please input another passwo

    I try to exercise a sample in Visual Web Developer 2005 Express help, why do I always get the error "Please input another password" Now I try to exercise a sample in Visual Web Developer 2005 Express help Title:   Walkthrough: Creating a Web Site with Membership and User Login (Visual Studio) URL:     ms-help://MS.VSExpressCC.v80/MS.NETFramework.v20.chs/dv_VWDcon/html/296c0be6-9ad5-4104-9a1b-a853986fa1a3.htm The following is from Visual Web Developer 2005 Express help I have do 1-6 step, it is OK, but when I create user (7th step), I always get the error "Please input another password" I'm sure that I have ...Show All

  • Windows Forms Refreshing a Listbox

    Hello, I have a listbox that has its datasource property set to a custom collection I created.  The value and display members are assigned to properties that belong to the object contained in the custom collection. I want the additions and deletions I make to the custom collection (listbox's datasource) to appear in the listbox.  How do I refresh the d ...Show All

©2008 Software Development Network