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

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

Tejas34

Member List

MarkNyats
pavel989
Kurt Jaegers
SDKCodeMonkey
Fositron
pappascd
JuliusY
sanjay tiwari
RichCa
Jacquipre
dgolds
den2005
Yogesh Ranade
kcchesnut
rmethod
Arkanoid
Moim Hossain
Gagandeep Singh
Andrew Mackie
Tiago Salgado
Only Title

Tejas34's Q&A profile

  • Visual Studio 2008 (Pre-release) Issue with WWF in VS2005 in Vista 5472

    I'm facing the following error when trying to create a new Workflow project E:\Users\administrator\AppData\Local\Temp\hrdkibtt.ret\Temp\TestWorkflow2.csproj(64,11): The imported project "E:\Program Files\MSBuild\Microsoft\Windows Workflow Foundation\v3.0\Workflow.Targets" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk. OS: Vista Build 5472 Other tools installed: > MicrosoftR WindowsR Software Development Kit (SDK) for July > Microsoft Visual Studio Code Name “Orcas” Community Technology Preview – Development Tools for .NET Framework 3.0 > Visual Studio 2005 Extensions for Windows Workflow Foundation (tried with RC2, RC4, Beta 2 ...Show All

  • .NET Development underlying connection is closed

    we have thick client winforms application which consumes a webservice . this throws up an excepyion of type System.Net.WebException "Underlying connection was closed. An unexpected error occured on recieve" We have tried to override GetWebRequest method in Reference.cs by setting KeepAlive = false. But it does not solve the issue. The timeout on IIS has also been increased without much luck. Any thoughts is greatly appreciated is this an intermittent error, or does this happen every time Is it pure HTTP or HTTPS Do you use any authentication underneath ...Show All

  • SQL Server How to display all records in one page (disable pagination)

    Hi, I use an embedded ReportViewer control as a LocalReport in a web form. The report displays the results in four pages and I need to display them all in one page (without any pagination). Is there a way to disable pagination Also, what do I need to do to show the print button in toolbar Thanks, Adarsh Great! Thanks for the quick response. Could you answer help with a couple more questions 1. I see two vertical scroll bars (one from ReportViewer control and the other from browser). How do I fix this 2. How do I display Print icon in the toolbar (ReportViewer control is hosted inside my web form in Local processing mode) Thanks in advance, Adarsh ...Show All

  • SQL Server OLAP cube - formula length

    Hi dear all, does anybody know the maximum length for an mdx formula for a calculated member in SSAS Kind regards Frederikm Hi about the max length: is this tied to any service pack version we are using sp1 also the thing is that there is no error in the formula, for when we use it in a normal mdx query it works without any problem... only when in the cube things go wrong ...Show All

  • Smart Device Development Communication between Windows mobile and a server system with WiFi/GPRS

    Hi I'm investigating the different opportunities for communication between Windows mobile and a server system with WiFi/GPRS. The solution that I try to find is the one that is most suitable for communication over network where the connectivity is very poor, like GPRS communication. My system must be able to "puch" information from a server out to registered mobile devices... Do anyone know if Microsoft already have application/systems that handle the communication part (like ActiveSync, ISA-server) so I can concentrate on my own business functions Right now I'm investigate MSMQ, Sockets or WebServices. What is the best solution for mobile system that need to handle real "push" over wireless communication ...Show All

  • .NET Development Stopwatch class not found in System::Diagnostics ?

    I am using VC++ 2005. In several projects that I have created I have never had this problem but now that I created a DLL project (used the Win32 wizard), I am having this weird problem where the System::Diagnostics namespace shows up a few namespaces and classes, but not nearly all that belong there. For example, the CodeAnalysis namespace is shown, then ConditionalAttribute, DebuggableAttribute, Debugger, and so on until SymbolStore, which is the last namespace/class listed. No Stopwatch and many other namespaces and classes that should be there. What is wrong It must have something to do with the project settings but I don't even know where to look to find the missing namespaces and classes. Any idea Thanks. Kamen Thank you very ...Show All

  • Visual Studio Team System Can't find the "New Project" command

    HI guys, something very weird is happening to me. I installed VSTS 2005 and when it first ran, a screen appeared to ask me how I want to configure the IDE (as a Web Developer, Project Manager, etc). I was distracted, when I clicked the Project Manager option. The thing is: I can't create any type of project with it. I only see New File and New Team Project options (I use TFS). But I can't create any type of web / windows project. What can I do to restore that option again Cheers In Visual Studio, go to "Tools" -> "Import and Export Settings...". In the wizard that appears, choose "Reset all settings" and click "Next". Save your settings if you wish ...Show All

  • Visual C# How can start and stop the threads [Parameterized thread]?

    Hi, I would like to know the threading concept and How to start and stop the threading in C# application. Please help. I recommend that you read the whitepaper that Albahari Joseph wrote on Thread Programming in C#. You will find a lot of information about the different lock mechanisms and more background information: http://www.albahari.com/threading/threading.pdf ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. HUD help: sprites drawing behind world

    I want the first screen of my game to consist of something similar to the intro of Valve's HL2 - a 2d menu drawn on a 3d background. I'm seeing my menu sprites and my world geometry, but my sprites are being drawn behind my models. I have my sprite drawing handled all within one object, called GameScreenManager. My 3d objects are all drawn within a GameLevel object. Both objects are extensions of DrawableGameComponent, and these components are both added to the Game class object. Inside the constructor of my Game object, I have set the following: gameLevel.DrawOrder = 2; screenManager.DrawOrder = 1; which, according to the hints, should cause the graphicsDevice to render the 3d stuff first and the 2d stuff second. All of my sprites have ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Security Problems for every project

    Hopefully someone can help me sometime soon, because I am finally out of school and will be coding for a while now. Anyway, ever since I tried to load a project off of one of my other computers on the network, all of my applications have security problems. Even now when I try to load projects from the local hard drive, VC# tells me I have a security problem. Some apps will run, but others say access denied on many of my project files. If anyone knows of settings that will change the security back to normal, that would be a great help and thanks in advance. What is the specific error message, and what are you doing before you get it One possible problem is that, by default, applications built on the .NET ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How to do effects like flashing?

    Hi all, I have tried the following code to make the screen flash. The variable flashInt is updated whenever the game is updated. But this code do not work. Maybe the ColorFill do not support the alpha value using (Surface backbuffer = graphics.GraphicsDevice.GetBackBuffer(0, 0)) { Color c = new Color(255, 255, 255, (byte)flashInt); graphics.GraphicsDevice.ColorFill(backbuffer, new Rectangle(0, 0, Window.ClientWidth, Window.ClientHeight), c); } So what do I do in order to do the effect in efficient way Do I need to create a texture with white color and then draw it by updating the alpha value Thank you very much Check out the ShipUpgrad ...Show All

  • Visual Studio Team System Unable to upgrade for Workstation to full TFS

    I installed the Workgroup version of TFS and we purchased the "full" license. I called in and received the Product Key. I entered the product key and say the command window open, stop IIS, restart IIS and closed. I am unable to add any users to the [server]\Team Foundation Licensed Users group. It keeps giving me this error "TF50626:Maximum Users(5) in License Group. Any help I had a our purchasing people buy an the "Full" Team Foundation Server 2 weeks ago. I told her just get me the product key b/c I knew that was all I need to upgrade from the Work Group Edition. All they sent was the CD...apparantly they said they didn't know what the key was and that it was embedded in ...Show All

  • SharePoint Products and Technologies Install WSS 3.0 on Vista (or only Windows Server)?

    Hi all, I thought I read somewhere that you could install WSS on Vista (I have Business Edition) - is this correct or can it only be installed on Windows Server Thanks in advance. Grant. Hi Mike, Thanks for your reply - can you tell me an eta when Vista Server will be available. Kind Regards, Grant. ...Show All

  • Visual Studio Express Editions Load File, Change Text in File, Save File As

    Okay, bear with me if I sound a little idiotic. I'm still new to this. Here is what I need to do: 1. Load file in the program (i.e.- htmlfile1.html, phpfile1.php, textfile1.txt, etc.) 2. Change some text in the file (i.e.- %my tag% ) 3. Save the file as whatever file I loaded (i.e.- htmlfile2.html, phpfile2.php, textfile2.txt, etc.) Here is an example: I have a file named "car.html". Inside "car.html" I have a line that says "Your car color is %mycolor tag%." When I load the file I don't have to see it. I can just enter some text in a textbox, press Enter (or push a button), and what I enter into the textbox will replace the %mycolortag%. I then save the file as "car-updated.html". Is this hard to do ...Show All

  • SQL Server How to: Link a Report to a Model as a Clickthrough Report

    I'm having some difficulty linking a custome drilldown or clickthroug report to another report that I have already created in report builder. I followed a MSDN article found at http://msdn2.microsoft.com/en-us/library/ms345226.aspx but I cannot find the " Select a page area, select Drill-through reports " option in report manager. Does anyone have a better explanation on how to do this I'm assuming that when you create the clickthrough report there has to some sore of filter on it that relates to the item of the clickthrough. I guess I'm I little confused, any help would be great. Thanks. The primary or base entity is the entity displayed at the root of the "Entities" tree in the Repo ...Show All

©2008 Software Development Network