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

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

RADIOGENERIS

Member List

Jazoned
GDigrego
MSP.Saami
snez
Maor David
Mephisto187
eko007
Sam Dela Cruz
aspatz
holy_spirit
AlexCr
hunb
Jake.K
kabucek
shayc
mkfl
Sam Jost
KevinBurton
Sreenivas amirineni
dnyandeo
Only Title

RADIOGENERIS's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. Syncing OpenGL/GDI

    I need to do the unthinkable and draw OpenGL commands into a window with GDI (design-time stuff like selection boxes) on top of it. It's working moderately well so far, I just need to get rid of all of the flickering! Using the ManagedGL class from http://www.opengl.org/cgi-bin/ubb/ultimatebb.cgi ubb=get_topic;f=3;t=014233 , I created double-buffered OGL context and overrode the OnPaint event of a Form to perform my drawing commands. A Designer for the Form draws certain GDI objects like snaplines and selection boxes around my OGL objects. As it is now, the OGL canvas does not flicker at all, but the GDI flickers heavily anytime the Form calls OnPaint. I've noticed removing the SwapBuffers(hdc) call after my OGL commands stops the ...Show All

  • SQL Server SQL 2005 modify function error

    I created a function and it works great but I cant right click on the function and click on modify I get the following error. I am the dbo who created it and I am the over all DBA. Some times I can right click on the script to and try to script to new query window and it works and other times it gives me a quoted_identifer error. The funtion code is below. By the way this function is running on a sql2000 sp4 database. TITLE: Microsoft SQL Server Management Studio ------------------------------ Property AnsiNullsStatus is not available for UserDefinedFunction '[dbo].[Split]'. This property may not exist for this object, or may not be retrievable due to insufficient access rights. (Microsoft.SqlServer.Smo) For help, click: htt ...Show All

  • .NET Development How to indentify a managed exe or dll.

    What's the best way to identify a managed exe or dll so one knows what debugging interface to use. Thanks. - Dan. GetVersionFromProcess() will return E_INVALIDARG for a running process thats not managed code. GetRequestedRuntimeVersion() returns S_OK but the version string is empty when a you call it with a not running non managed code exe. If I load an exe into Visual Studio and press F5 is that how it determines what debugging interface to use - Dan. ...Show All

  • Smart Device Development Displaying version information of an application dynamically in vc++

    hi Everyone, I have a smart device mfc (vc++) dialog based application. I have a requirement of displaying the version information of my application (exe) dynamically. Could anyone guide me as to how i need to go about it I have seen something like version in the .rc file of the application. Can I use it to my benefit thanks in advance cheers Regards Kulkarni Hi, I'm attempting to do the same thing and I tried the code above. My call to GetFileVersionInfoSize returns successfully with a size > 0 (1540). However, after calling GetFileVersionInfo my lpBuffer remains empty. I haven't been able to find this problem in the forums or the help files and I'm not ...Show All

  • SQL Server Copy cube from a DB to another one

    Hi, I would like to copy a cube and its content from a database to another one. The first database is the one used for production and the second will be used to archive the old cubes. Is there a specific way to deal with this kind of issue Thanks in advance for your support. Rgds, Juan You can take a look at the following link for "synchronize". http://msdn2.microsoft.com/en-us/library/ms174928.aspx Yes. It supports xmla script. The easy way is to generate the script using the synchronize wizard. ...Show All

  • SharePoint Products and Technologies 64 bit SharePoint Server 2007

    hi, my question is, is there a 64 bit version of SharePoint Server 2007 Apparently there is, but i can't find a download anywhere. I can only find the 32 bit version or 64 bit SharePoint Services. Any help/link appreciated. t.i.a., ratjetoes. You can download the 64 bit WSS V3 here: http://www.microsoft.com/downloads/details.aspx familyid=0A50DA0F-7C94-4814-BBFE-2B66FE4A9087&displaylang=en I did not see any place to download the 64Bit SharePoint Portal Server (which makes sense since you need to purchase it) but there is defnitely one. ...Show All

  • Visual Studio Team System CTP4 - Editing with new T-SQL editor

    Once a sql script have been created and added to a project how can you use the new T-SQL editor to modify this script The standard SQL editor is used instead. If I use File Open for any script that is part of my project then you get the simple editor. The T-SQL Tool bar loads but is completely grayed out. If you File Open on any script out side of the Project you get the T-SQL editor, fully functional. Also if I close the solution and do a file open on a script in the project the T-SQL editor launches. ...Show All

  • Visual Studio 2008 (Pre-release) How to get my nodeID?

    How to get my nodeID without customer resolver CreateHost... OpenHost... CreateChannel... PeerNode pn = m_Channel.GetProperty<PeerNode>(); String str = pn.InnerNode.NodeId;// I want to get my nodeID here! compile error CS0117: 'System.ServiceModel.PeerNode' does not contain a definition for 'InnerNode' unser debugmode, through "QuickWindow" I can find pn.InnerNode.NodeId Please help! Any other way ok, thank you! I see...you could still have an application-level ID/member name for each of your application instances (=> peers) without having to customize the resolver.. Let me know if that helps or if you need any other assistance.. Thanks, Shalini. ...Show All

  • Visual C++ Big loss in performance when using wrapper for unmanaged code

    I have followed the general outline by MVP Brian Kramer when developing a wrapper for Rick Wagner's C++ version of the Mersenne Twister. But to my utter disappointment the performance of the code was quite week. The native code running in a win32 console application was able to produce 300 000 000 million random integers in just over one second, but my wrapped version running in an CLI console application took about 6-7 seconds to produce the same amount of integers. This was absolutely not what I have hoped for. Performance is of the utmost importance in the part of my application where I will run the Mersenne Twister. I know that is it not advisable to run my wrapper code in a loop, but I really have to do that in my application due t ...Show All

  • Visual Studio Express Editions Help with query - im really stuck.

    I have two databases: 1 = Suppliers, 2 = Supplier Locations (I need them to be seperate because the supplierID is a primary key, but some suppliers have more than one location) I have created a form on which I have put the Supplier details on in Details view and under it I have put the Supplier locations in Gridview. How can i do a query so that when a user clicks on a supplier Id number in the listbox in the Supplier Details area, that suppliers locations will appear in the Locations grid below Thanks for any help, Diane This assumes that you have set the lsitboxes index value to reflect the Primary Key value of Suppliers table. Private Sub ListBox1_SelectedIndexChanged(ByVal sender As System.O ...Show All

  • SQL Server Mass Delete Question

    I'm not sure that this is the right forum but maybe you guys could help me out. I'm pretty new to T-SQL; I have a large web application (asp, C#) and a MSSQL 2005 server. I have two tables 'Clients' and 'Attributes' which were designed by someone long gone. Each Client has several attributes (100+) linked with a ClientId. The problem is I need a way for a user to delete a large number of clients at a time and I know that my algorithm is bad but I don't know enough SQL for a better solution. Right now I'm using C# to collect and iterate through the ClientIds and call a delete command. On the attributes I have a foriegn key constraint with a cascade delete. Database db = DatabaseFactory.CreateDatabase("MyConnectionString"); for ...Show All

  • Windows Forms Close Form containing subforms which can cancel in Closing event

    Hello! My program contains forms that contain subforms. Simple example: my MainForm has two Forms as member variables, one is a main menu and one shows the content. If I now want to close the MainForm, e.g. by clicking on the X of the application, the Closing event of the MainForm is fired. In that Closing event I have to close both subforms, by calling menuForm.Close() and contentForm.Close(). The problem now is, that in the Closing event of the contentForm the e.Canceled value could be set to true, but that way the MainForm's Closing event doesn't notice that an continues closing the other subForms and afterwards itself anyway. What I would need is, that instead of calling Close on the subforms I first have to ask ALL containing su ...Show All

  • Visual Studio Team System Database Projects - SQL Server 2000 Scripts Only

    I created a database project using the 'SQL Server 2000 Scripts Only' template. It appears this project type is strictly designed to hold SQL scripts. I have two questions: How do I import scripts that I've already created into this project I have a database that I've scripted (about 4000 TSQL files) and would like to import them into this project. How can I do this Assuming I am able to import these 4K scripts, what exactly does a project of this type (Scripts Only) allow me to do Am I able to create a physical database from these scripts Other things Thanks, Amos. Scripts-only projects, only provide you with a container for organizing your T-SQL scripts, and will be the replacement for the ...Show All

  • Visual Studio Team System Team System DB Professionals CTP 6 - Error loading at studio 2005 startup -why so ?

    I have installed professional edition, installed SQL Server 2005 developer edition, than - DB studio CTP 6 - and at each studio load I have error loading this package . (it is first package of DB pro that I install) Why this happens I also installed Visual studio Team suite from MSDN, above initial installation but have same error. what is most probable reason of this error how to eliminate it ____________ I working under some company security politics, but have some admin rights. may this affect thanks you. Of course I tried CTP 7 but all is the same error is ' The Team Edition for DB Professionals ({E0A00075-5177-4C9C-9A08-BB8367EA8829}) did not load because of previous errors. For assist ...Show All

  • Visual Studio attaching Biztalk process Visual Studio is crashing

    Hello Bruce, When I am attaching Biztalk process Visual Studio is crashing. I really appreciate if you know any fix for this. Please reply to seshu.x.vutukuri@jpmchase.com Thanks & Regards, Seshu. Hi, apologise if i shouldn't write it here but i'm with a similar problem in similar enviorenment (VS2005, BTS 2k6). Each time i try to build any BTS project within any solution the process takes 100% of CPU processing. Although i expected for a long (the whole night) it didn't take any advance and the process seems hanged up. The BTS project within the solution has a folder and within the process i made a very simple process of requesting and sending files. I hadn't continue creating my orchestration due to the ...Show All

©2008 Software Development Network