Software Development Network Logo
  • Game Technologies
  • Windows Forms
  • .NET Development
  • Visual Basic
  • SQL Server
  • Windows Vista
  • Visual C++
  • Visual Studio
  • Smart Devicet
  • IE Development
  • Visual C#
  • VS Team System
  • Microsoft ISV
  • Visual FoxPro
  • Audio and Video

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

OasisGames

Member List

Bigmo
Rischa
ImagineTech
Davids Learning
VitaminB6
JavaBoy
knvb
montechristo
Marius Mihalec
pdurbha
IrisFresco
bhavu
Chuff
LoSko
Rasheed Hammouda
dana_lotus
xinz
Stefan Daugaard Poulsen
Evgeny Popov
Lonnie Barnett
Only Title

OasisGames's Q&A profile

  • .NET Development How To Handle HTTP Header

    Hi Experts, How to add a http header which says: HTTP/1.1 200 OK and send it back as response Regards, Suman if its ASP.NET, questions should be posted here: http://forums.asp.net however we still need confirmation ...Show All

  • Visual Studio 2008 (Pre-release) SQL SubQuery using LINQ

    How to write a LINQ Query with Subquery where I want to use "In" or "Not In" clause It would be helpful if someone could please provide an example: For example I wanted to convert following sql query to LINQ. "Select CusotmerID from Customers where ProductID in (Select ProductID from Products)"   There is no 'In' subquery in LINQ (so far). Use the 'Any' operator to accomplish the same thing. For example: all customers that are located in the same city as an employee from c in db.Customers where db.Employees.Any(e => e.City == c.City) select c; ...Show All

  • SQL Server Reportviewer Control

    Hi, I am facing a peculiar problem .....the reportviewer control gets displayed as a Dot if i drag it on to as aspx page....... ...Show All

  • Windows Forms OFFICE PIA and ClickOnce

    Now that Microsoft has the Office 2003 PIA as a separate installable distribution, does anybody know how I can deploy Office 2003PIA when deploying my ClickOnce application WITHOUT requiring admin right fromt he logged in user. Is there a method of bootstrapping it and getting it to run as a defined user (who has admin right) I can not see a way of deploying this application using Group Policy Any help would be great Thanks Simon ...Show All

  • SQL Server can't download ms sql 2005 free trail version

    hi was looking forward to downloading the 180 day trial version of ms sql server 2005. Signed up and everything. when it loaded the download page it only has the 2 help files listed. Has the free trial ended if i download the full express version does that have a free trial hi, to me all works as exptected... in the middle of the page you can find a section reporting: "Instructions Enterprise Evaluation Edition is available in two downloadable formats: an image file that you can use to burn your own DVD, and a self-extracting executable file that will allow you to download and install without a DVD burner" where you can download the ISO images or the direct self extracting execut ...Show All

  • Visual C# Strong Name Key File

    What is common practice when sharing a snk with many projects Do I add the snk to each individual project Or is there a way to store the snk in a centralized location to be used by all projects There are really two quick and easy ways to do this... the first is to put your key file in a common location so that each project can access it through it’s AssemblyKeyFile attribute in its AssemblyInfo.cs and might look something like:       [assembly: AssemblyKeyFile(@"c:\Projects\Common\MyKey.snk")] Another method is to install your key into your systems default Crypto Service Provider (CSP) and use the AssemblyKeyName attribute to reference the name of it. In order to install your key pair you’d use sn.exe t ...Show All

  • Visual C# C# and VB.NET, which can be learned faster?

    Could anybody help let me know which language I should begin with C# or VB.NET VB.NET would be since its more english like syntax. It really depends on your experience and knowledge but generally VB.NET since its more english like syntax compared to C#. Both have their advantages but its totally your call. ...Show All

  • Community Chat ideas for teh l33tn355 that is vista

    hey-o!i gotta question, if you could do something to vista that would make it even cooler (if that even is possible), what would you do i'd animate the little windows pearl so that when you moused over it, it did something interesting~!!what would YOU do Would be great to have a choice of window managers like you do on linux. Some days I want clean and responsive and others I really fancy eye candy. I know you can switch from aero to windows classic but it's hardly the choice I was looking for. :) ...Show All

  • Microsoft ISV Community Center Forums Can't open regedit

    Hai.... Why if I want open regedit (run>regedit), and then show message error like that The application failed to initialize properly (0xc0000005) Please anybody help me... Jebat Thanks Hi, I'm not sure why that error message appears, but if you would like to open regedit manually, here's how. Click START,SEARCH, TYPE IN regedit. In the look in: search box,click the arrow tab, then browse. Find the windows folder. It will be under my computer, hard drive, then the windows folder. Click on the windows folder to select, then click OK. You are now back in search, click search, then when regedit folder shows up you may stop the search. Left click on reged ...Show All

  • .NET Development [C#] file meta informations

    Hello, i am not sure in which section to ask this question, so I'll ask in the most genereal one. I am wondering if is's somehow possible to extract some meta informations from files (like file type for example -- avi, doc, ppt, pdf,...) I read about MIME-type, but i'm not sure if thats what i'm looking for. Thank you for your post. FileInfo class is not the solution I am looking for. Maybe i expressed myself badly. I was wondering, if files (like documents, movies, ... ) have some META informations stored about the file type (i am searching for something more than just the extension check). ...Show All

  • Visual Studio Team System Notification - Closed task

    Hi, is there a way to get notifications, if someone close the task regards Simon In V1, if the task is assigned to you or you changed it then you get the notification. We cannot customize project alerts in currentl release. To work around this, everyone can add your email ID in addition to his/her email ID in Project alerts. Or a group email ID can be given in Project alerts. For example, in your team if you have 5 people, everyone must give abc@corp.com;simon@corp.com in project alers window. Another option is giving team@corp.com where team is the groupmail for all of you. Thanks Sagar ...Show All

  • Visual Studio Express Editions Moving Mouse Cursor

    Hello, I am wondering what code ya need to be able to move yourt cursor to a different part of the screen I been trying several codes but it doesnt work. could someone give me a simple code that moves your cursor to the right. I can do the necessary modifications after that. Thank You. Using the Cursor class and it's Position property you can move the cursor position. The two general ways to do this include setting the cursor to a specific location:       Cursor .Position = new Point (100, 150); //Set cursor to location 100, 150 Otherwise you can just set a point based on the previous one:       Cursor .Position = new Point ( Cursor .Position.X + 10, Cursor .Pos ...Show All

  • Software Development for Windows Vista How to Logon to Administrator account in RC1?

    Hi all, Does anybody know how to logon into the admistrator account for RC1 There are no option for me to choose the administrator account. I've read the same issue faced in build 5308 http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=308800&SiteID=1 but the artical link about registry update from Joanne Nguyen seems unreachable. THanks in advance :) Brian ...Show All

  • Visual Studio Express Editions Display Sub Directory Names

    I would like to generate a list of directories in a Combo Box. For example I have C:/Projects/ and inside we have project folder like Project 1, Project 2, etc. C:/Projects/Project 1 C:/Projects/Project 2 I would like to be able to display Project 1 and Project 2 as options to choose from in a ComboBox. The Project Names as always changing so I don't want to have to update the list manually. Thanks No I had 2 comboboxes one was populated using one method and the other was populated using another. The bindings approach simply shows that if you can use databinding on any item which supports ienumerable and in this case the return from the getdirectories does support this - so if you wanted to simply have a l ...Show All

  • .NET Development Using Reflection.Emit to specify a namespace for a generated TypeBuilder.

    Example: String namespaceName = "MyGrandparent.MyParent"; String assemblyNameStr = namespaceName + "." + "Me" ; String version = "1.0.0.0" ; AssemblyBuilder assemblyBuilder = this . GetAssemblyBuilder ( assemblyNameStr , version ); ModuleBuilder myModuleBuilder = assemblyBuilder . DefineDynamicModule ( assemblyName + ".dll" , assemblyName + ".dll" , true ); String entityNameStr = "MyChild" ; TypeBuilder typeBuilder = myModuleBuilder . DefineType ( entityNameStr , TypeAttributes . Public | TypeAttributes . Class | TypeAttributes . Serializable ); This code puts the constructed TypeBuilde ...Show All

©2008 Software Development Network