ROkku's Q&A profile
Game Technologies: DirectX, XNA, XACT, etc. The Unofficial "Hooray I'm Done With my DBP Game" Thread
When you get done with you game and sumbit it, crow about it here. A little over 24 hours left until the deadline and I'm so amazed I'm done, so much better than college Thanks to ZMan for his help, good luck all. I'll post the source code for my submission once the deadline hits. Bill I just submitted mine. Unfortunately, it has a couple of glaring problems. I considered not submitting it, but decided I'd worked to hard over the past week to not at least enter it. I'll post an updated version for the community over on gameprojects.com within a week or so. Tom ...Show All
SQL Server merge replication - how can I synch
we have a merg replication running in three regions UK,USA and AU my question is in one of our test environment testers managed to get a few tables out of synch while the replication is out. we have re-established the replication since then and it worked fine untill they try to update records from those out of synch tables. as usual we get conflicts. we don't really know how many tables are out of synch either. we have about 500 tables. is there a way to synch tables from with in the merge replication thanks greg! I guess that helps only when you run into a conflict. But what I was looking for was fixing the errors before running into any conflicts. Remember the databases are in ...Show All
Visual Studio Team System Not able to add the product in to cart through Ocracoke
Hi we are using Ocrocoke(VSTS2005 PERFORMACE TOOL) for one of web application load testing .but problem that we are faching is we are not able to add the product in to cart.Scenario is User browse the site select a product and add product into the cart. Issue is same scenario is Executed perfectly through Jmeter. but not with Ocracoke. What might be a problem is it some cookie or cache related issue or some thing else Please provide ur thoughts on same we are blocked on this front. Thanks in advance Naveen Thanks for the reply Rick. I tried to troubleshoot the same issue, without success. Scenario: First Page is addTocart.aspx GET, that we are requesti ...Show All
Visual Basic how to read a japanese characters from a file
how to read a japanese characters from a file using Visual basic 6. I am using the following code, but it is failed to read the kanji characters. <Dim oStream As New ADODB.Stream Dim iNo As Integer oStream.Open oStream.Type = adTypeText oStream.Charset = "ISO-2022-JP" oStream.LoadFromFile (App.path & "\Temp\item.dat") oStream.Flush Text1.Text = oStream.ReadText Set oStream = Nothing> please help me... What your asking for is completely possible but these forums are for VB.NET and there are better places to find answers for older versions of VB such as VB6. Maybe the VB6 newgroups - http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.vb.genera ...Show All
Visual Studio Express Editions Web Browser Help
I am making a really simple web browser using visual basic express edition 2005. It works well except when I click on a link that opens a new window. Rather than opening a new instance of the form, it opens in Internet Explorer. How do I make the link appear in a new instance of my form there is a new window events in web browser, try to add logic to launch a new form Private Sub WebBrowser1_NewWindow( ByVal sender As Object , ByVal e As System.ComponentModel.CancelEventArgs) Handles WebBrowser1.NewWindow End Sub ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Collision detection - Howto
Hi all, I'm trying to make two objects collide in GSE, actually in a Pong game - between the bat and the ball. I have motion for both, but no collision, the ball just leaves the stage so to speak. Any help would be appreciated. I have looked in the Help, but to no avail. I got it working for a 2D object.. basically you have to set the Min and Max of the BoundingBox to the minimum and maximum co-ordinates that your object can take up on the screen. So if I had two 50x50 boxes whose positions are x1, y1 and x2,y2 respectively: Vector3 minv1 = new Vector3 (x1, y1, 0); Vector3 minv2 = new Vector3 (x2, y2, 0); Vector3 maxv1 = new Vector3 (x1+50, y1+50, 0); Vector3 maxv2 = new Vector3 (x2+50, y2+50, ...Show All
Visual Studio 2008 (Pre-release) orcas alpha
maybe it is not 100% linq related (I personaly think that it is ;p) on friday first public alpha of vs orcas has been relased (or is it vs2k5 on net4 steroids ) http://www.microsoft.com/downloads/details.aspx FamilyID=82243606-d16d-445c-8949-9ee8c10cda2e&DisplayLang=en aviable as vpc image. some info @ dowload page I've not seen anything new in the Orcas CTP; in fact it supports only a small fraction of the LINQ features. I think its purpose is more to keep us informed as to where they're at with productization. I don't consider this disappointing - I'd much rather MS take time with this and get it right, given that they're changing C#. In the meantime, we've got the LINQ preview to give an idea of t ...Show All
SQL Server JOIN Filters and Non-numeric Keys
I expect that this is not possible but: I've created a initial filter on our tblLocation. I've created a join filter on the header table for our inventory data. I've create a join filter on the header table for our inventory detail data. The joins between the inventory header table and the inventory details table is on a three field key which are of type nvarchar. When I try to sync a subscription, I receive an error which indicates that it cannot bulk copy into the inventory details table on the subscriber because it would create duplicate keys. There isn't any duplication at the publishing server so, I expect this has something to do with the data type of the key/join fields. Am I correct If so, is there a workaround. ...Show All
Internet Explorer Development MSJVM patch for DST?
Hi, We're currently in an XP (pre-SP2) environment and I'm trying to find any information about the MSJVM and the upcoming DST change... I was under the assumption that the MSJVM pulls the date-time information from the underlying Windows OS, thus a specific DST patch for the MSJVM is not needed. Is my assumption correct Do we only need to worry about applying the DST patch to Windows itself thanks! Wazoo, I am trap on the same boat. Did you get your answer I have MSJVM installed and needs to know if it relies on OS for time zone or has its own compiled version of TZ files. ...Show All
Visual C++ Fseek inside a Win32 DLL
Hi All, I have created a Win32 DLL for i am passing a file pointer to a function that is implemented in the DLL like: int Function1(FILE* ptr); Function1 is implemented inside the DLL as int Function1(FILE* ptr) { ...... fseek(ptr,0,0); ...... } But after fseek , it is getting crashed with unhandled excepyion and I found taht it is inside _lock_file() function. Am I doing anything wrong here Regards, I forgot to specify something: the dll and exe must be linked dynamically to the C runtime, not statically. If they are linked statically each will have its own runtime and file pointers may not work correctl across runtimes. Other than this I don't know any other reason for a file pointer t ...Show All
Visual Basic Slow Visual Basic IDE
i know this might be a redunandt question/issue regarding the slow perofrmance of the IDE in Visual Basic, but i have a bit different symptoms; the IntelliSense is working fine, but other features like, saving the document, or adding new lines or detection of syntax errors (the blue line takes a while to appeare or disappeare)! i tried doing the tips that were mentioned in other threads, but nothing is working. some posts actually said that removing the Navigation Bar helped, i tried to do so but it didn't work, because the Navigation Bar is stuck and doesn't want to be removed though i unchecked it in the Tools>Options>Text Editor>All Languages. i have Visual Studio 2005 SP1 installed, on windows XP SP2 machine running o ...Show All
SQL Server Unary operator ignored in parent-child aggregation
Hi, I have defined an unary operator column for parent - child hierarchy. But it seems that it is considered only in sums on the same level . When rolled-up it is ignored. For example: Child1 has unary operator +. Child2 has -. I get a cube like this: Level 1 Level 2 Amount ----------------------------------------------- Parent Child1 100 Child2 50 --------------------------- SUM 50 --------------------------- SUM 150 Have I missed something, or is it an erro ...Show All
Visual Studio Tools for Office Attaching objects to mails in outlook using c#
Ive developed an add-in to Outlook 2003 in c# using vs2003 and Vsto. In that i would like to attach an object of a user-defined class created in the project to an Outlook mail-item. This mail item is then stored on the hard-disk. The post has no question and seems to cover different areas.. Where does this question reside Is the objective to transfer an in memory object or an embedded object from an assembly setup in studio Or does the post concern allowing a user to save attachment. Please elaborate. ...Show All
Visual Studio Express Editions Visual Basic Express Download
I have been unable to download any of Visual Express Edition software. Have all downloads been suspended I have seen problems with the web installer downloads stopping during the install phase, are you downloading the web installers or downloading the full iso packages. If you are trying the web installers, I would suggest to try the full manual install downloads and see how you go with those. ...Show All
Visual Studio 2008 (Pre-release) Support for msbuild
We are still using make and makefiles for building our huge CAD/CAM applications and would like to migrate to something better. We don't want to migrate to the current VS C++ project files because our applications have a very complicated, multistaged build process: We have some Code Generators, CORBA, managed C++ assemblies, automatic unit test procedures and the like. Therefore the current VS C++ project files are not really an option, because: They are fuzzy to administrate: For example updating compiler switches can be a error prone process. The format of the Project files is not properly documented. So, here my questions: When will direct msbuild support be available for VS C++ If this is not in Orcas, what would y ...Show All
