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

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

Viperious

Member List

tichno1
Rathi
Rod DeValcourt
AdrianHall
cheekydevill
allenmpcx
c0dem0nkey1519
dinks
Ed Psyk
sr1
Nian2000
Ultrageek
Chan Nyein Zaw
Andreas Hammar
polien
Evgeny Popov
Nathan Dolly
zeroXML
Mikky
Marco H
Only Title

Viperious's Q&A profile

  • Visual Studio 2008 (Pre-release) Item lookup

    I noticed most example, just iterate over the results of a LINQ:     int [] numbers = new int [] { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 };     var lowNumbers =         from n in numbers         where n <= 3         select n;     foreach ( int n in lowNumbers)         Console .WriteLine(n); However, how do I lookup the 6th item or the item called 'Fred' lowNumbers[5] someNames['Fred'] Do I have to convert to an array, list or dictionary first Thanks Ad. ...Show All

  • Visual Studio Express Editions Visual Basic 2005 Express Questions

    Hey Guys, I'm trying to break into the world of desktop programming. I have a few questions before I attempt to fully learn a programming language. 1: For someone new to programming would this be the ideal tool to start with If not, what language should I start with or what tool should I learn to begin with 2: How do I find answers to programming questions Let me explain what I mean exactly. I do understand that for simpler programs where I am changing values and putting them into a message box or into another value to put into a text file or database. So I can make any program that is just filling out a form and saving or manipulat ...Show All

  • Visual Basic Resolving Assembly Usage.

    How can i resolve if some .Net ...dll is used by any (or defined) .Net application, not touching this application. Ok, I say in another way. "Not touch" i mean - not to correct code in it and add some methods. But the main thing is that i need to do it in runtime, that mean when my programm runs it has to check if some .Net dll (determined) is already used by another programm, and it's great to know wich programm... ...Show All

  • Visual Studio How to delete a VSS database?

    Hi, I was wondering how I can delete a old vss database (In both VSS 6 and VSS 2005). I created a new database in the wrong location and I want to remove it. But I can't seem to find a way to do this... Hopefully someone can help me with this. Greets, El Loco To delete a VSS database, simply delete the database folder from disk... If you want to unregister it from VSSExplorer (instead of deleting physically the database files), open File/Open SourceSafe Database dialog, select the database and press the Remove button. You cannot remove the current database (if you already have it open in ...Show All

  • Visual C++ Need help

    I know this sounds really bad, but i cannot even get a Hello World win32 console application to work correctly Here is what I do: 1. open visual c++ 2. Click "new project" 3. select Win32 Console Application 4. type in "HelloWorld" as the name 5. Click next using the wizard, then finish. 6. type: #include <iostream.h> int main(void) {    cout << "HelloWorld";    re turn 0; } 7.  Compile (build) the program and i get the following errors: 1>c:\documents and settings\josh\my documents\visual studio 2005\projects\HelloWorld\HelloWorld\hello.cpp(12) : fatal error C1010: unexpected end of file while l ...Show All

  • Smart Device Development XML in compact Framework 2.0

    Hi all, The compact Framework 2 is supposed to support XML, but when I add : Imports System.Xml Imports System.Xml.XPath in my code, I get an error sayng that XML is not a member of System !! What do I do wrong Thanks in advance, Emphyrio I would guess you forgot to add a reference to System.Xml.dll. ...Show All

  • Visual Studio Express Editions Update SQL Express to Standard

    How do I update my SQL Server 2005 Express to the Standard Edition How much does it cost Thanks It costs alot of money, and you should install it on a server operating system. http://www.microsoft.com/sql/howtobuy/default.mspx ...Show All

  • Visual Basic Set Starting size for a child form

    Is there any way to set the starting size for a child window in a mdi form. Whenever I open the child form it sizes it based on the size of the parent form, instead of using the size I set for it in the designer. I use Form2.Size = New Size(640, 480) . Is there another way An MDI (Multiple Document Interface) child form can be programmatically sized. After you assign the MDIParent property to it, just prior to "show"ing it, set it's size New Size (640,480) For those of you confused about this, the MDI is the type of interface that Visual Studio uses (as well as older versions of MS Office, etc). Whereas your document ...Show All

  • Visual Studio 2008 (Pre-release) Middle Tier Server using WCF

    Hi, Please, I need to know if it is possible convert my Middle Tier Server to WCF and how. Using 100% .NET Remoting I wrote a middle tier server named ‘Endomap – Enterprise Domain Application’ to easy administrate connections and application servers. Like an IIS, but only for ‘Smart Clients’, so it is : 1) A windows service (EndoServer) that runs your middle tier Assembly/DLL's in one or more AppDomains. You give your methods the <RemMethod> attribute to make them available to external callers and intercepts. For example: [ Remotable ( typeof ( IHello ))] public class Hello : ContextBoundObject , I ...Show All

  • SQL Server Deleted Needed SSRS Report from VS Solutions Explorer

    If a deleted report does not go to Recycle Bin and cannot be found using Windows Search, am I correct in assuming that it's completely gone from the hard drive and could only be recovered from a nightly backup tape ...Show All

  • .NET Development Performance issues with System.Collections under 2.0?

    I have an application (originally written using the 1.1 framework) which performs numerous ArrayList.Contains and Hashtable.Contains method calls using various reference types (which have NOT overriden getHashCode and Equals). When running the same code compiled against 2.0, the total speed of the application is significantly reduced. By doing a bit of performance analysis it would seem that these operations have just gotten slower. The default implementation of object.getHashCode also seems to take longer in 2.0. Has any of the underlying library code changed for version 2.0 which may explain these results Any clues as to what may have c ...Show All

  • Visual Studio SourceSafe Web Service Configuration

    A collegue of mine has just setup a SourceSafe 2005 database and configured it for internet web service access. I have Team Suite installed including SourceSafe 2005, but I am unable to find an option anywhere which would allow me to connect to it. I can connect over a local LAN or over the net via file sharing, but I can't find the web service protocol. I was informed this feature was in Beta 1. Anyone know what happened to it I thought Beta 2 was feature complete since the Go Live license is available.... Now i managed to get it to work.  I had enabled the internet access while the proj ...Show All

  • .NET Development TCPClient just "hangs" when unable to connect

    I am developing on a WM5 smartphone device. I have not had this problem for WM2003SE smartphone devices, infact the code is the same except the .NET CF versions are different (1.0 and 2.0)   Problem is, when I try to connect to a computer from the WM5 device, I do this:   this.theTcpClientProtocol = new TcpClient(someServerName, somePort); this.theNetworkStream = this.theTcpClientProtocol.GetStream();   problem is, if the application on the server end has not started the service, in other words it is not running making the port available - when creating the new TCPClient object it just hangs endlessly! ...Show All

  • Windows Forms Set Property via string (possible bug)

    Ok I have done up a bunch of code, but in my code I would aways have the size and location set directly I only needed to set other properies via string. I recently ran into this problem. Ok I pop a button on the page (winforms) and then to change the size of the form via button press with this code. Dim Sz As New Size Sz.GetType.GetPrope ...Show All

  • Visual C++ cli arrays(newer)

    Hi,    I am having a problem with cli::array's, here is an example of what I have. ref class A { private:    Int32^ i;    String^ s; public:    A(String^ s2, Int32^ i2)    {       s=s2;       i=i2;    } }; ref class B { private:    cli::array<A^ >^ a; public:    B()    {       a = gcnew cli::array<A^>(1)    }    void add(String^s, Int32^ i)    {    & ...Show All

©2008 Software Development Network