ListrCZ's Q&A profile
Windows Live Developer Forums MSN feature - How to check if a specific user came online while you were offline?
Hello, I am new on these forums and I have a question about Windows Live Messenger development. Is there a way to check if a specific user came online while you were offline I am sure this feature is not built into WLM so are there any plans to include something similiar in future It would nice if you could get a list of users in your contact list who came online while you were offline. Maybe you can include the time when they signed on and the time when they signed off. Thanks! writing an addin you cold do this if you were appearing offline. Otherwise it is not possible to have something run in your account checking for your buddies presence while you are not logged into that account currently ...Show All
Windows Forms Two textbox at the same location.
Hi, I am using VB.Net 2005, I would like to ask, if I have I have two textbox at the same location, textboxA and textboxB, what properties I should set/configure so that textboxA appear on top of textboxB, means textboxA ‘cover’ textboxB. Million thanks in advance. Best Regards, Yee Boon. ...Show All
SQL Server attribute key was not found error
everytime i try to process my cube i get this error: Errors in the OLAP storage engine : The attribute key cannot be found : Table : dbo_MCSFinFactData , Column : InvoiceDateDimensionID , Value : 15. Errors in the OLAP storage engine : The record was skipped because the attribute key was not found . Attribute : InvoiceDateDimensionID 8 of Dimension : InvoiceDate Fiscal Year 2 from Database : SRDBAnalysis , Cube : MCSFinancial , Measure Group : MCSFinancial , Partition : MCSFinancial , Record : 10. I have checked the dimension table and the record with an invoicedatedimensionid value of 15 exists. there are also many records in the fact table that use an invoicedatedi ...Show All
.NET Development create, read & write in XML file...?
Hi... I dont know much about XML.... In my application , I want to make a XML file & then after reading the contains of that XML file , i have to edit those contains using my application. Can anybody give me any link which will help me for this... Thanks & Regards, Vinay A very comprehensive group of examples are available here. http://msdn.microsoft.com/msdnmag/find/default.aspx type=Ti&phrase=XML%20Files&words=exact ...Show All
Visual Studio 2005 IDE: No MRU List
Hi all This is really starting to bug me now and despite a few hours of searching I can find no solution! I installed 2005 IDE and all is working fine except for the fact that whenever a project is created, loaded or saved the Project MRU list on the start page remains empty. I have seen much about the lack of being able to remove them and checked that the appropriate registry key was created, i.e: HKCU\Software\Microsoft\VisualStudio\8.0\ProjectMRUList This key exists and yet using RegMon the IDE never seems to attempt a write to that location. What worries me is that if this is not working, there may be a few other "foibles" I have not yet found. For info: The desktop on which it was installed was instal ...Show All
SQL Server Backup MS SQL 2005 -> Restore MS SQL 2000
hi there i've made a backup from a MS SQL Server 2005 database and i tried to restore this database to a MS SQL Server 2000. Unfortunately, I got following error The backed-up database has on-disk structure version 611. The server supports version 539 and cannot restore or upgrad this database. what can i do is it possible to restore the MS SQL Server 2005 DB on a MS SQL Server 2000 Philipp Check out the Database Publishing Wizard: http://www.codeplex.com/sqlhost I will create a script a database that includes inserts for all the data. ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Vector Math Help
I'm having a problem...I have a ship heading in a direction VectorA and a gravitational force pulling it towards an object, when it collides with that object, I need to bounce it off that object into the correct direction, (180 - angle of collision), but I cant figure out how to get it to head in the proper direction at the correct speed. if (shipBounds.Intersects(sphereBounds) == true ) { double yoffset; double xoffset; double returnangle; yoffset = ( double )(playerShip.Position.Y - sphere1.Position.Y); xoffset = ( double )(playerShip.Position.X - sphere1.Position.X); returnangle = Math .Atan(yoffset / xoffset); returnangle = (double)MathHelper.ToRadians(180) - returnangle; playerShip.Velocit ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Not Using Vector2 in my 2D Game Engine
I just recently changed, oh, about a 1000 lines of code in my game engine. Instead of using Vector2 for things like position and size, I decided to use floats instead. Does anyone else use Vector2's as their main position and size data types in their 2D game Right now, I have the code for both versions, and I'm trying to make entirely sure floats are the way to go before throwing one of them away. Any comments Since Vector2 is just a pair of floats it will use up the same space as two separate float variables. This is no different in .NET than in C++. So, I cannot see why it would be less efficient to use the struct vs float vars. ...Show All
Windows Forms Error installing on some clients
Hi All, I am getting an error when I try to install my clickonce application on some clients. Other work fine and have no problems. The error is: ERROR SUMMARY Below is a summary of the errors, details of these errors are listed later in the log. * Activation of http://crystalsrvr/GlobalResearchApplication.application resulted in exception. Following failure messages were detected: + Exception occurred loading manifest from file grd.Entities.dll: the manifest may not be valid or the file could not be opened. + File grd.Entities.dll is not a valid Portable Executable (PE) file. + The process cannot access the file 'C:\Documents and Settings\cfoofat\Local Settings\Temp\Deployment\7BBXA022.ZHZ\XRZ43X8Y.VKB\grd.Entities.dll' becau ...Show All
Visual Studio Express Editions I was wondering if you can delete the temporary internet folder from a Visual Basic Express edition application
I was wondering if can delete the temporary internet folder along with its files from a Visual Basic Express Edition application. I just need the registry information. I do not want any code. Thank You!!!!1 you can but you may come across problems such as access denied or the file being in use. However... Dim theFiles() as String = System.IO.Directory.GetFiles(Environment.GetFolderPath(Environment.SpecialFolder.InternetCache)) for each currentFile as String in theFiles try System.IO.File.Delete(currentFile) catch ex as Exception end try next this will keep deleting files and skip the files it cannot delete. Does this help ...Show All
Visual Studio Express Editions Creating a tab through Code
Hi there, I've got this tabcontrol and a button . When i click the button I want it to create a new tabpage on the tabcontrol and then it creates the relevant objects like a menu on the tabpage. And then it creates code for that tab. I've been trying some code, but I couldn't find the right way... Maybe you already know how to create a new tab, but here it is for the ones who don't: TabControl1.TabPages.Add( "Test" , "My new tab" ) ...Show All
Visual Studio What happens to large (>5GB) Databases?
Hi! Microsofts recommends to keep the size of the repository smaller than 5GB. What are the problems when the size is bigger Is it causing inconsistencies or is the analyze-run slower Thx! It's slow to run analyze, backup etc... The real hard limit is any particular file can not be more then 2GB (actually a bit less then 2GB) ...Show All
Visual C++ swap(exchange) data of two rows in datagridview!
wadup! I want to swap the contents of two datagridviewrows. I am using VC++ .NET Visual studio express edition . Any suggestions how I can do it Cheers! hello Re: swap(exchange) data of two rows in datagridview! Does swap the indexs of 2 rows helps If not, I'd recommend you to post your question in windows form forums to get wider respondees pool. regards, rico ...Show All
Visual Studio Express Editions Need help with wildcards in query
I've been using Microsoft Visual Basic 2005 Express Edition: Build a Program Now! ( by Patrice Pelland) to try to learn VB, but I am having a problem with the Car Tracker example in Chapter 8 (databases). Set up the following query using 'Query Builder': SELECT Listing.ListingID, Listing.ColorID, Listing.MakeID, Listing.CarTypeID, Listing.DateSeen, Listing.Year, Listing.Price, Listing.Cylinder, Listing.HP, Listing.URL, Listing.EPGCity, Listing.EPGHighway, Listing.Notes FROM Listing INNER JOIN Color ON Listing.ColorID = Color.ColorID WHERE (Color.ColorName LIKE '%' + @colorname + '%') Tested it out (from within the Query building wizard) and it does return values as expected ('b' returns both 'Dark Blu ...Show All
.NET Development IIS Worker Process message box
Application Error Event 1004 appeared with this in the event log: Reporting queued error: faulting application w3wp.exe, version 6.0.3790.1830, faulting module unknown, version 0.0.0.0, fault address 0x00730061. Not sure why this is occurring, but have been unable to find any solutions about this on the newsgroups. I have seen other posts, but no answers. the problem is with the SYMANTEC try this it will help , it worked with me fine To modify bmiconfig.xml to work around the issue: Open the services menu by going to Start -> Run and typing services.msc Stop the Symantec Mail security for Microsoft exchange service, and the Symantec Mail security spam statistics service, if they are sta ...Show All
