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

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

WoodrowS

Member List

zq3
hailey
fazee4u
KayJay
Fro-D
Ethan_W
Matty4242
CMR12963
Rambo
Amit Kejriwal
Michael Coomer
Jonathan Keljo - Microsoft
Joginder S Nahil
Elliott Downing
Jessica.Weiner
JinGuoLi
poppy33611
Davaris
AaryanW
Joannes Vermorel
Only Title

WoodrowS's Q&A profile

  • Visual Studio Express Editions Simple Pause

    Hi, I'm trying to add pauses into one of my programs. If the pause is in a loop, the system hangs up on it. As a simple example, the following works fine - it waits 4 seconds then puts "5" in the label box: Dim g As Integer = 5 System.Threading.Thread.Sleep(4000) Label1.Text = g The following code, however, doesn't work. It just hangs up and does nothing: Dim g As Integer For g = 1 To 10 System.Threading.Thread.Sleep(4000) Label1.Text = g Next I'm just trying to throw in a pause during each iteration of the For loop. I've tried the things mentioned in the threads "A P ...Show All

  • Visual C++ Getting LNK4224 with B2 - what's the story?

    Hi David! When building projects with VS2005 B2 I'm now seeing lots of these: mymodname.obj : warning LNK4224: /COMMENT is no longer supported;  ignored While the message is straightforward, what's the story behind it The "/COMMENT" was marked as depricated in VC2003 and is now consequently removed... You should use " #pragma comment" instead. The reason might be: more C++ conform. -- Greetings Jochen Kalmbach Microsoft MVP VC++ My blog about Win32 and .NET http://blog.kalmbachnet.de/ PS: Please mark an answer as "answered" if it helped!!! ...Show All

  • SQL Server SQL Timeout Error

    Hi I m using SQL 2005, in one table i have 1 millon records in a table. I usually get SQLException saying the operation has timeout. So how do prevent such error, can i increase the time out period for SQL. If Yes then How Regards Debugger Where do you wantto achieve this Programmatically or in a SQL Gui HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Microsoft ISV Community Center Forums VBA XmlMap.loadXML problem - repeating call

    Hi all, I have the following XSD load to XML Source of excel: < xml version="1.0" > <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs=" http://www.w3.org/2001/XMLSchema "> <xs:element name="stock"> <xs:complexType> <xs:sequence> <xs:element maxOccurs="unbounded" name="quote"> <xs:complexType> <xs:sequence> <xs:element name="symbol" type="xs:string" /> <xs:element name="price" type="xs:string" /> ...Show All

  • Software Development for Windows Vista Vista Install 5342 problems

    I have downloaded vista 5342. I start installing it and it manages to rech phase 2 of the install. Now after the first restart during phase 2 of the install my screen eventually goes Black. It has an underscore "_" flashing at me in the top left corner of the screen. This also happens to me on build 5308. I heard that this black screen is where the hardware is checked. I have left it on this black screen for 1hour and still no look. I think it will be hardware related. My system is: AMD Athlon 64 4000 1gb geil dual channel PC3200 HIS Ati radeon x1800xt MSI K8N SLI Platinum 200GB Maxtor Diamond Max 10 ...Show All

  • Windows Forms What the eck??? Error on Line 0???

    Got rather weird error in my solution.... Everything has been working fine but I have suddenly got a debug message that reads "Object Reference not set to an instance of an object".  Doesnt sound like an unusual message, but this one is on Line 0 of the form itself   I cant now see the form at design time, all I can see is  ...Show All

  • Visual Studio Team System Custom Rules Development

    Okay, okay so I know that any rules I write now will need to be re-written with the next release of Visual Studio, however I write (and maintain my own rules and now I'm stuck) .... I've been tasked to write a rule that checks for multiple return statements in methods, this is to help enforce the structured programming principle of methods having single entry/exit points that some of the junior developers consistently ignore. The problem I have is that with introspection I only get the MSIL, which is of course optimised. The optimisation process [is so good that it] actually restructures the code, eliminating all return opCodes exc ...Show All

  • Visual Studio Debugging of managed programs across the Internet?

    Hi, Is debugging across the Internet of managed debuggees doable with VS 2005   (Even assuming no domain related security issues are involved)  I guess VS 2005 continues to use DCOM, which implies the same limitations. Thanks, Alan    Alan, The quick answer to your question is no. The Visual Studio 2005 debugger doesn't support debugging managed code across the internet. The primary remote debugging scenario that is supported by VS2005 is within an interanet. HabibH. ...Show All

  • Visual C# How can I change the computer resolution when my program starts?

    I'm having a problem when I install my apps to a computer with less resolution, my customized forms does not display all the buttons especially the ones at the bottom. I want to set the resolution at run-time, how do I do that Please help. Whilst I'm sure there's ways of doing this, my simple answer would be: don't. Not under any circumstances. You have no idea why people have the resolution they do. They may have eyesight problems, requiring a lower resolution, they may have restrictions from their graphics card, or even other programs. Rather make use of the Anchor and Dock properties to have your controls automatically resize at ...Show All

  • SQL Server Cannot find publication wizard

    Hello Guyz Can any one help me plzz, Im using sql server 2005 which came with visual studio, and when i wanted to create a publication using sql server management studio. But i could not find the publication folder in the replication folder under my database. Plzz help me guyz Its not there. To manage publications in SQL 2005 you need to right click on the publications folder within the replication folder. -- Hilary Cotter Director of Text Mining and Database Strategy RelevantNOISE.Com - Dedicated to mining blogs for business intelligence. This posting is my own and doesn't necessarily rep ...Show All

  • Visual Studio Tools for Office Sheet level protection

    Hi, I have been given the task of designing the application with Visual Studio 2005 Tools for Office System. As this is the option that has left over all other options, We have started gathering the technical requirements. We have a total of 18 sheets, with sub-groups. e.g. Group-1 is an empty sheet, and is followed by Group-1 sheets as Group-1A, Group-1B etc.. and then we have Group-2 sheet followed by Group-2A, Group-2B etc... I would like to add security or protection based on the group. So Group-1 person should not be able to access the Group-2 sheets though they are in the same excel file and vice versa. The amount of data i ...Show All

  • Windows Forms Bad bad memory problem

    I've written a web crawler app that when running has gone into virtual memory overload. Nothing I have done has appeased it. I have tried, nullifying references, setting virtual memory limits programatically using the CorRuntimeHostClass class and I've gone through painstaking effort to check that all references to all objects get removed as the program is running. I ...Show All

  • Visual Studio 2008 (Pre-release) Why FirstOrDefault method aways gets all records from database?

    The FirstOrDefault extension method work properly but it aways perform a sql query with no where clausule in database returning all records! Thanks, Vitor // This performs a SQL clausule with a where clausule // A exceptions it's returned when no results founded Enterprise enterprise = db . Enterprises . First ( e => e . ID == 181); // This performs a SQL clausule with *NO* where clausule // All database records are internally returned Enterprise enterprise = db . Enterprises . FirstOrDefault ( e => e . ID == 181); // This work ok Enterprise enterprise = db . ...Show All

  • Architecture Benchmark for IIS and .Net 1.1 +

    Hi, I'm trying to find some data that shows different benchmarks on the capacity and scalability of IIS on different versions of .NET and Operating Systems (Win2k, Win2k3, Win2k3 Server). Any idea where I can find this type of data In particular I'm interested in hardware requirements, number of concurrent users/requests that it can handle based on the system configuration, differences between .NET versions and the different Operating Systems. I would appreciate any help as I've been looking without success for a couple of hours. Thanks in advace, Abe Sultan you can find few results here : ...Show All

  • SQL Server How do you transfer a database to SQL Server 05?

    On the web site for MS SQL Server 05 Express the description at the top of the page says, "Transfer any database created in SQL Express to other editions of SQL Server 2005." http://msdn.microsoft.com/vstudio/express/sql/powerful/ How do you transfer a database from SQL Express to SQL Server 2005 I am creating a data-driven web site using Visual Web Developer 05 Express, SQL Server 05 Express, and MS SQL Server Management Studio Express. My host uses SQL Server 2005, ASP.net 2.0, and FrontPage extensions. Thanks for your help. Very simple - just detach the database from Express and copy the database fi ...Show All

©2008 Software Development Network