V Williams's Q&A profile
Windows Forms Source code, server and future
So as several of you have noticed, the source code for 1.2 hasn't been released yet. I am trying to figure out what is the best approach for releasing the source code and the future of Terrarium 1.2. Here are the current thoughts. I'd like to get your opinions on which options you prefer. 1. Release 1.2 Server (this will happen, regar ...Show All
Windows Forms How can I have a global variable common to all forms?
I have few form classes, A B C D E, etc, one may call another then and there. The MDI form may instantiate child forms at will. I wanted to have few global variables across all forms and classes. How can I have a global variable common to all forms Again, Visual C++ 2003 example would help me a lot. Thanks, Jil. Try in a module this Public variable As YourTipe I think it make the variable accesible for all your project. ...Show All
Windows Forms Retrieve the LoaderExceptions property for more information.
after going from beta2 to rc1, the designer all of a sudden cannot load my forms anymore. instead, i get the infamous window with the red top that says some errors may go away building the project, while other need code changes. needles to say: the file compiles fine, the form could be opened with the beta2 and vs2003 designers and obviously doing a rebuild doesn't help at all. now what the additional error message says; Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information. ok - great. now how do i retrieve the loader exception property. how can i fix this where can i find more info ...Show All
Windows Forms DateTimePicker column
Does anyone know if Microsoft will be including a DateTimePicker column in the DataGridView (for underlying date values) The current article says "TextBox, Image, CheckBox, ComboBox, Link, and Button column and cell types" will be included. I'm hoping for a DateTimePicker one as well... From: http://www.windowsforms.net/WhidbeyFeatures/default.aspx PageID=2&ItemID=13&Cat=Runtime&tabindex=5 ...Show All
Visual Basic Unexpected Airthmatic Overflow Occur.?
If lst_ma.SelectedIndex = 0 Then Dim Wgt As Integer 'Calculating Ma1 For c1 = PD.Get_Index To 0 Step -1 If (c3 = c1 - Ma1) < 0 Then &nb ...Show All
Windows Forms POS system
Hi, I’m currently writing a POS (Point Of Sale) system in c# with the database stored in sglexpress (using .Net 2). Is there any kind of framework out there for this I would appreciate any tips, not just code but also UML and general ideas about it. Thanks Carl-Johan Larsson ...Show All
Visual Studio Express Editions SP2?
Is there any way I can install Visual Basic Express 2005 on my XP SP1 computer or do I have to upgrade to SP2 Could I just use an earlier version of Visual Basic Express. there is nothing wrong with the way the SP2 PC was setup - for a start thats the only manufacturered PC in my household. and i've checked everything I possibly could. what if people don't want every update included in SP2 they should have the choice. they bought the right to use the software in the first place. I've had experience of configuring XP SP2 PCs and don't want to have this experience often. as an observer, user and memb ...Show All
Windows Live Developer Forums When is it gonna be released
Hello, When is live chatting going to be included into live.com thanks ...Show All
Visual Studio Express Editions vb6
how to creat array in vb6 anArray=split("a,b,c,d",",") for each thing in anArray msgbox thing next ...Show All
SQL Server Insert multiple rows with a single INSERT statement
With SQL Server 2005 Express coming out, I have switched from MySql. I'm having trouble with a very simple INSERT statement that has previously worked in both MySql and Oracle. The statement is as follows: INSERT INTO pantscolor_t (procode,color,pic) VALUES ('74251', 'Black', '511black.jpg'), ('74251', 'Charcoal', '511charcoal.jpg'), ('74251', 'Khaki', '511khaki.jpg'), ('74251', 'Navy', '511navy.jpg'), ('74251', 'OD Green', '511odgreen.jpg'); However, when I attempt to execute this statement with Management Studio Express I get the following error: Msg 102, Level 15, State 1, Line 2 Incorrect syntax near ','. Any ideas ...Show All
Visual Studio Team System VSSConverter Failures/Flaws
I am having no luck using VSSConvert to migrate a large VSS database into VSTF. I could not convert the database in beta 2 and I still cannot convert it in beta 3. I'm trying to convert a single root project and VSSConverter runs for a few hours then crashes with a Send Error type exception. Neither VSS Analyze nor VSSConverter analyze reports any errors on the database. VSS analyze does report several warnings associated with loss of Share/Branch, files still checked out in VSS, and a single "TF60067: Data loss due to folder move warning". I don't really care about the checked out files right now.&nbs ...Show All
Visual Studio Team System Can't get past the 26204 error
I cannot seem to get the data tier installed, it keeps failing with a 26204 error but I can't see anything obviously wrong. I've checked the list at http://blogs.msdn.com/askburton/archive/2004/09/03/225386.aspx but everything still seems OK. - The server is a Windows 2003 Enterprise Edition (not SP1) server. - It's a member of a 2003 Active Directory. - I've created a domain account called TFSSETUP and added this to the servers local administrators group. - I've installed IIS on the server. - I've installed the April CTP of SQL Server 2005 (as recommend by this post http://forums.microsoft.com/msdn/ShowPost.aspx PostID=67956 ...Show All
.NET Development Object reference not set to an instance of an object.
why we got this error messages when working with asp.net.in which situation it will arise.if any body knows please explain in detail This is a very generic error message. It would be really helpful if you provide the code snippet and exception call stack. Thanks, Anton ...Show All
Windows Forms Calling methods between 2 Projects c#
I have 2 Projects (Project 1 with class1 and Project2 with class2). I have added a reference to project 2 from project1 since I will be creating instances of class2(Project 2) from class 1(Project1). Also I need to call some methods (method1) in project1 (class1 ) from project 2(Class2). How would I accomplish this in c#. I have heard of interfaces&nb ...Show All
Windows Forms prevent focus
Hi guys, in my windows application you have a button to clear all textfields. How can I prevent the cursor to appear in the last textbox which was focused In other words none of the textboxes should have the focus at all. I tried textBoxNote.Focused = false; but it is read only Thanks heaps Chris ...Show All
