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

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

rajesh_batchu

Member List

EWSommer
titote
Samuel Martins
Jean LeFrancais
Maaloul
Denvas
Evgueni
gilagila100
GraemeP
Mile Petrov
Quimbo
ChrisMcCabe
atypoli
tee_user5
Horst Klein
JCJCJC
franziss
BlackMan890
niallhannon
dougzhoez
Only Title

rajesh_batchu's Q&A profile

  • Visual C++ fatal error LNK1104 and openGL

    I'm trying to get some openGL tutorials to run on my PC, i'm using visual studio 2005 (not VS2005 express, btw), and have placed the openGL libraries and dlls in the correct folders. i have ensured that the linker has connected to these folders, however, for the life of me, i cannot figure out why i always get the following error: fatal error LNK1104: cannot open file 'glut.h' any help would be much appreciated EDIT: glut.h is in the following folder: C:\Program File\Microsoft Visual Studio 8\VC\PlatformSDK\Include You probably have specified glut.h as linker input instead of specifying a library (probably called glut.lib). How did you exactly "connected" the linker to these folders ...Show All

  • Visual Studio Team System Solution Explorer / Schema View / Design Time Database - Where is the 'Truth'?

    We are running into repeated cases where the code contained in the Solution Explorer of DBPro is not the same as that contained in Schema View and not the same as that contained in the Design time database. This makes me wonder, where is the 'Truth' contained Microsoft has boasted that the 'Truth' is in the Project. However, what part of the Project Earlier today I used the Schema Compare feature to compare our project against a development database. About an hour ago I had developers tell me objects were not updated to the development database, they were missed. I then opened the Schema View and saw a warning that a resynch was required. I did so, then did another compare against the development database. A few more objects showed u ...Show All

  • Visual Studio 2008 (Pre-release) XBAP and browser cookies (not working)

    When an XBAP application calls Application.GetCookies(), it throws an exception (due to no cookies). The browser window hosting the XBAP application does have cookies for the site. This is CRITICAL in developing an XBAP application that interacts with a web server - the forms authentication and session cookies need to be maintained between the initial browser request and the XBAP application that it is hosting. How can I get the XBAP and browser to use the same cookies The XBAP application was not hosted in an IFRAME - this throws another error. I have found out that XBAP cannot read session cookies at all. This completely hamstrings a developer in building any real-world application that is browser-based ...Show All

  • Visual Studio Evaluating function calls in debugger

    Hi, i’m trying migrate from VC++ 6 to VC++ 2005 (not managed code) and have problem with function evaluation in debugger. Function calls (I have several calls in Watch window) are not automatically evaluated every time the debugger steps. Instead, an icon appears that enables to manually update the result. In VC++ 6/VC++ 2003 all function calls are evaluated automatically. Is there any option to turn on automatic evaluation (“Tools->Options->Debugging->Enable property evaluation” has no effect) Sorry but this is actually on purpose. Func Evals were disabled for (among other reasons) being too slow to reevaluate on every step. You might try a macro instead. Something like so: Sub ...Show All

  • Smart Device Development New Sprint PPC-6700 but out of date build using VS2005 5.0 SDK

    Just beginning to build an application specifically for this phone and bought a new Sprint PPC-6700 phone today. The software on it is February 2006 vintage and when I tried to run the program I built on VS2005 with 5.0 SDK I get an error message that This application ( AppName.exe) requires a newer version of Microsoft .NET Compact Framework that the version installed on thsi device." I tried the software store on the phone and handago update failed. Is there a update available or SP, or do I need to reinstall the OS with latest version on a 'factory fresh' phone that was not built yesterday I tried copying the patch to the device and running it, but it would not run. Purhaps because at 16.7 ...Show All

  • Visual Studio 2008 (Pre-release) Trusted Subsystem Implementation

    We are building an application that has multiple WCF services hosted in IIS on multiple machines within a customer's topography. The services need the ability to access network resources (hops to other WCF services, database, file system, and active directory). We have been treating public services as trusted subsytems: access to the public service is authenticated and authorized using the user's identity, but access to other resources within the service are executed under a trusted identity. Here is my question. What is the best way to access the other resources under the trusted identity Run the App Pool as Network Service and Impersonate when access to the resource is required. Seems kind of messy having to store the truste ...Show All

  • Smart Device Development MissingMethodException while running smartphone application

    Hi there, I am totally lost on what is going wrong with my application. I have a smartphone application designed for a pocket pc that uses a class library I have written, both which is written in C#. My code compiles fine, but when I run it (on the pocket pc emulator) I get a MissingMethodException on this line: if (!FormSenderAppSettings.RememberPasword || FormSenderAppSettings.EndUser.UserName == string .Empty || FormSenderAppSettings.Password == string .Empty) { ... Where FormSenderAppSettings is a class with static members in my class library. This line is the first line of code in the main forms Load event. I have used some other classes in my class libary within the main windows constructor, the code in the c ...Show All

  • Visual C# Getting applications Paths

    Does the System Namespace has something like system.path I need print out the current cs files path.. because for some reason I'm trying to load some images in a program that I'm creating.. but for some reason.. It only works when I add in the full path to it. interesting, it should. It returns a string of the path/location of where your application is running from MessageBox.Show(Application.StartupPath); (or Console.Write) ...Show All

  • Visual C++ Marshal::SizeOf()

    The following generates "illegal use of type as expression," and I don't know why: CHARFORMAT fmt;// = new CHARFORMAT(); fmt.cbSize = Marshal::SizeOf(CHARFORMAT); Surely, since CHARFORMAT is an unmanaged trype it should be a legal parameter Charformat is an unmanaged type defined as follows: struct CHARFORMAT { int cbSize; unsigned int dwMask; unsigned int dwEffects; int yHeight; int yOffset; int crTextcolour; char bCharSet; char bPitchAndFamily; char szFaceName[32]; // CHARFORMAT2 from here onwards. short wWeight; short sSpacing; int crBackcolour; int LCID; unsigned int dwReserved; short sStyle; short wKerning; System::Byte bUnderlineType; System::Byte bAnima ...Show All

  • SQL Server Am I only one with the problem using CSV files?

    Simple thing - trying to set up connection for CSV file. In Microsoft Excel - CSV is displayed OK. However - in SSIS - some records are broken - for example records where Description field contains: ""WHITE HOT."" I'm not expert on CSV format - but aren't double quotes used for escape in csv - and if so then WHY microsoft implements it one of their products and not it SSIS So what am I going to do now TheViewMaster wrote: Thanks for the link. I was mostly pissed off that my 2 hour project was going to be days worth of work because they decided not to implement CSV. They have done. never ever trust what Excel says about CSVs. If you want to look at the raw data, open it up in a text editor. ...Show All

  • SQL Server HTTPS SSL Issue

    I have a reporting services website with SSL and publically the reports link will not redirect to HTTPS. I tried changing the RSRReportServer.config files secure connection level to 3 but it give me an error: "The underlying connection was closed: Could not establish trust relationship with remote server." Same thing happen using 2 and 1. Publically I can access the home page, folders and properties tab. Otherwise I have to manually insert the "S" in HTTPS What is that all about Everything is ok on my webserver using private ip and exploring RS locally. Thanks, J Have you tried using the Configuration Tool to set the HTTPs properties The configuration files rsreportserver.config and rswebapplication.config fil ...Show All

  • Visual Studio How to install Management studio from Vitual Studio 2005 Professional correctly?

    I installed the Vitual Studio 2005 Pro Edition but first I uninstalled all previous express edition. After I installed the pro edition, the Management studio did not get installed Isn't it from the 'wrokstation, ....' option Yes, I followed the steps to uninstall everything-No error or warning during uninstall. But when I reinstall again. All the instants were install fine(Integration Services, FullText search, Analysis Services, SQL Server, Report Services, and Browser were running perfect) exception the 'client Components' could not install and that give me the error: 'A component that you have specified in the ADD_LOCAL properties is already installed. To upgrade the existing component, ref ...Show All

  • SQL Server package configurations

    Hi, i keep struggling with dtsconfig. i have 4 packages which all have the same datasource based on the global-datasource. is there a way i can save that global-datasource, instead of configuring all 4 packages to use a config-file I think I have the same question. I want to set my connection strings from a config file. Is there some way to configure the Global Datasource to use an expression to set the connection string It seems the only way to set it from a config file is to add a connection to the connection managers from the Global Datasource, then set the expression for the connection in the package itself. Thereby making the use of the Global Datasource useless in this instance, ...Show All

  • Visual Studio Which Files in Source Code Control

    I am using SVN for my source code control as not everyone where I work has access to VSS. The benefits of VSS that I found was that it automatically chose which files to include under the source control. I am using TortoiseSVN and recently Ankh SVN as it is an addin. However, I can't work out which files should be versioned. Just like this guy here . When I open my VB solution I see the following: Test - My Project - AssemblyInfo.vb - modMain.vb - modWord.vb - frmMain.vb Now it obvious that the last 3 need to under code control. However, even though I have added Test.vbproj and Test.sln to the SCC, the top three don't appear to be under control. Which files should you put under control What about the extra directories that get created ...Show All

  • SQL Server EXECUTE AT <Linked Server> Question

    In a stored procedure, I have the following TSQL statement: EXECUTE ('Insert Into Federation.dbo.FederationData (FederationData) Values ( )', @Buffer) AT [HostBox.abcd.mydomain.com\SQLServer2005,1563]; This works fine. However, I do not want to hard-code the name of the linked server like I have above. I would like to specify it at run-time (because it could be different based on certain situations). I cannot seem to get it to work using a variable to represent the linked server name, so it can be dynamic. Can it be done Thanks - Amos What about something like the following: DECLARE @SQL1 varchar ( 500 ) DECLARE @STR_LINKEDSERVER varchar ( 80 ) SET @STR_LINKEDSERVER = N 'HostBox.abcd.mydomai ...Show All

©2008 Software Development Network