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

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

ramesha_ks

Member List

pappascd
Aaron Bull
sham_s1
Hans L
b.p.
René C. Kiesler
bvod5647
Ray Bell
ronks
Dan10468
Javahar
Ewild
Will Merydith
Lexer
Phil Atkin
Rob Joosen
vbDrGonzo
ejamashu
kleinma
BrentHecht
Only Title

ramesha_ks's Q&A profile

  • Visual Studio Team System Error Saving Project Plan

    I am having the following irritating error when trying to save a project plan in the Development Project Plan file. Here is the scenario: - Open Team Explorer in VST2005 - Expand the Project Documents - Expand Project Management - Double-click the Development Project Plan.mpp file - Wait for a while (until the TS Icons appear ) - Add a new task to the project - Click the Publish button - Click the File > Save/Update menu function, choose the Development Project Plan from the list and click Save . it will tell you that the file is read-only would you like to overwrite the file, click Yes. The file is saved OK. - Close the Project plan and reopen it again. - Repeat the above steps. You will see tha ...Show All

  • Silverlight (formerly WPF/E) how i used createFromXaml method parametre as xaml file

    Hi Friends, I know that we can create a xaml controls dynamically by using CreateFromXaml method. But The CreateFromXaml method takes a parameter as xaml control syntax but is it possible to send parameter as a xaml file name. or if any other way how i cretae dynamic controls by using xaml file . Hi Dinesh I think that you can't do this directly. Why you dont try using ajax ( atlas ) You can call a webmethod to load your xaml file and use CreateFromXaml in callback function to create you element. cya ...Show All

  • Visual C++ DLL Project migrated from VC6 to VC8 crashes.

    Hi, I am currently maintaining an MFC/ATL COM project that has been compiled till now with Visual C++ 6. I have been assigned the task to maintain the code under the VC8 compiler. The solution has several projects under it. Most of them generate DLLs, and there is also an Application project that uses these generated DLLs. Migrating the code from VC6 to VC8 has meant mainly performing the following minor changes to the code... using the _CRT_SECURE_NO_DEPRECATE macro definition to suppress various warnings (not errors) regarding deprecated function calls etc. removing the @1, @2 ... ordinals from the .def file changing string functions like ltoa() to _ltoa() etc. static_cast<> for conversion errors ...Show All

  • .NET Development Dynamic control in Asp.net

    Hi As fairly new to asp.net programming so this might sound a little simple and stupid to some of you. I am trying to create a webform so when a "Fixed" "Add" button is clicked, and number of dynamic textbox and a "Delete" button is created. because traditinoal web are stateless, whenever I click the dynamic "Delete" button that i created, the page is refresh and my dynamic controlls are reset and lost. After bit of Googling the only solution if found is by maintaining the state of the page by using Viewstate or by session. but this this it Is there a way to turn the page fresh off !!! Thanks in advance. Jason i readed the article of the site you refered. first,i will indicat ...Show All

  • SQL Server MDX Calculations Script updates

    I have mdx calculated members defined in my cube calculation script. Is there any tool (other than BI Studio) that would allow a power user (typically a financial controller) to modify formulas for selected calculated members Another option could be to use custom rollup formulas stored in the relational data source and offer a nice front-end for modifying those formulas, but this would require a full process of the cube, where as modifying the calculation script would only require a default process. Any other idea Thanks! Thanks for the explanations Darren. As you rightly guessed, I would like to allow power users to modify centrally stored calculations. However, BI Studio is overkill for my target popu ...Show All

  • Visual C# Math application

    I am learning flash via C# and C++ express version, to write programs for kids free of charge to help them learn reading and math but at the moment I am trying to find sample applications of samples of code to look at that will help me I would like to write a win32 application not console that would take a set number and then gen a group of math problems random and then give 4 sets of replys like a multiple choice question, how would I go about writing this SAMPLE Random question output V 5 O 50 O 55 X10 O 45 O 60 < ---- multible choice random gen replys ----- ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. accessing the textures associated to a loaded model's BasicEffect

    I'm trying to figure out how I can replace, at runtime, a texture that was automatically assigned to a model loaded from (for example) an FBX file. In the debugger's 'Watch' window, I can see the texture I want to change, however the path to get to it is a little strange. The 'texture' property is a member of SOME property of the Effects on the mesh; however, this property doesn't seem to have a name. All it says in the Watch window is "[Microsoft.Xna.Framework.Graphics.BasicEffect]", where it would normally say the property's name. (I have a screenshot here , highlighted to show the path I'm trying to take.) Does anyone know how to access that member and its properties In short: myModel.Meshes[0].Effects[1]._______.Texture = te ...Show All

  • Visual C++ definition of dllimport function not allowed

    wrapi.h ... #include "WRAPIExports.h" ... .... //macros #ifdef WRAPI_EXPORTS #define WRAPI __declspec(dllexport) #else #define WRAPI __declspec(dllimport) #endif ..... HRESULT EnumerateDevices(WRAPI_NDIS_DEVICE **ppDeviceList, long *plItems); ... .... ////////////////////////////////////////////////////// wrapi.cpp ..... .... ... //exported function implementation WRAPI HRESULT WRAPIEnumerateDevices(WRAPI_NDIS_DEVICE **ppDeviceList, long *plItems) { return theApp.EnumerateDevices(ppDeviceList, plItems); } ////////////////////////////////////////////////////////// WRAPIExports.h .... .... #ifdef WRAPI_EXPORTS #define WRAPI __declspec(dllexport) #else #define WRAPI __declspec(dllimport) #endif .... ... //exported functions WRA ...Show All

  • SQL Server Looking for Book

    I have the book 'Advanced Transact-SQL for SQL Server 2000' by Itzik Ben-Gan and Tom Moreau, Ph.D. Is there a similar book for SQL Server 2005 No, there is not "a" similar book... there are two you'll want to buy :)   http://www.amazon.com/Inside-Microsoft-SQL-Server-2005/dp/0735623139/sr=8-1/qid=1157294696/ref=pd_bbs_1/103-8045562-4351038 ie=UTF8&s=books   http://www.amazon.com/Inside-Microsoft-Server-2005-Pro-Developer/dp/0735621977/sr=8-2/qid=1157294696/ref=pd_bbs_2/103-8045562-4351038 ie=UTF8&s=books   ... both by Itzik Ben-Gan and others, one focused more on querying and one more on programming T-SQL. -- Adam Machanic Pro SQL Server 2005, available ...Show All

  • Visual C++ Is there a way to create a dll in C++ without a def file and have it work for a Visual Basic Host?

    Is there a way to create a dll in C++ without a def file and have it work for a Visual Basic Host It looks like it is possible using Alias keyword in VB. I don't have VB6 to test but seems to work fine in VBA: This is the VB part: Private Declare Function summer Lib "D:\Projects\Tests\Forums\geodb\debug\geob.dll" Alias " _summer@8 " (ByVal num1 As Long, ByVal num2 As Long) As Long Note the Alias keyword followed by _summer@8 . _ and @8 are always added by the C/C++ compiler for functions that use stdcall calling convention. 8 is the size of arguments in bytes (2 * sizeof(long) in this case). And this is the C++ part: extern "C" long __declspec (dllexport) __stdcall summer( lon ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Bryce 5 (3d modelling) for free! (no strings!)

    This isn't the latest version of Bryce, but if you're like me, and are just interested in creating free meshes to play around with in XNA, it's not bad. It's certainly a lot more use friendly than the Blender app I downloaded last week. http://www.daz3d.com/program/bryce/bryce5free.php You have to download it before 6th September, but it doesn't need installing, just unzip and run - so worth downloading and pasting the serial number in before then just in case! :-) After putting the serial number in, it'll also offers a free download of some extra stuff (I couldn't actually find what it added to Bryce, but I'm sure it was something!). Exports to .x files, which will be supported by the Content Pipeline, or can be converted to t ...Show All

  • Visual Studio 2008 (Pre-release) Project Crashs Upon Open,Close and Reopen Window2

    My project Crashes at a certain sequence of user events...Press the RSSButton and Window2 Appears,Close the Window than press the RSSButton Again to ReOpen Window2..Thats when the Project Crashs completely,I did a Build of the project to check the performance of the application in the Task Manager (Mainly for Memory Usage)... So theirs a problem here and i'm not sure what is causing the program to crash when you Open,Close and ReOpen Window2.. Here is some of the Code Window1 EliteBar.Window2 eB = new EliteBar.Window2(); private void RssShowButtonClick(object sender, RoutedEventArgs e) { eB.ShowDialog(); // Also Tried eB.Show(); get the same Results } Window2 private void XbuttonClick(object send ...Show All

  • Visual Studio Team System Question about TFS parts

    I've noticed ( )that there are some parts in the TFS Architects,developers,testers,database What does it all mean Are they parts of they tfs different components Avi Those are different SKUs of Visual Studio. All of them include the same "Team Explorer" client that lets you connect to TFS. This page shows which features appear in which SKU: http://msdn.microsoft.com/vstudio/teamsystem/products/compare/ ...Show All

  • Visual C++ re help!

    i have this error lnk 2019 how to fix it Linker error 2019 indicates that you are trying to access a method which can't be found in any of the libraries the linker has been notified of. This is generally a method you have declared yourself, but forgot to define, or an import from e.g. the win32 api, whose implementation library has not been referenced. If you could paste the actual linker error, it would be easier to pinpoint what your actual problem is. ...Show All

  • Visual C++ Linking errors..

    BITMAP HdcToBitmap(HDC hdcNeedle, int needleWidth, int needleHeight) { HDC memDC_Needle = CreateCompatibleDC(hdcNeedle); HBITMAP memBM_Needle = CreateCompatibleBitmap(hdcNeedle, needleWidth, needleHeight); SelectObject(memDC_Needle, memBM_Needle); BitBlt(memDC_Needle, 0, 0, needleWidth, needleHeight, hdcNeedle, 0, 0, SRCCOPY); BITMAP bmpNeedle; GetObject(memBM_Needle, sizeof(BITMAP), &bmpNeedle); return bmpNeedle; } There are some questions that remain - where are you getting these APIs from What sort of project did you create What IDE are you using As nobugz said, the errors you're getting make no sense, they appear to be errors in the calling convention of the APIs. ...Show All

©2008 Software Development Network