Muhammd Jassim Munir's Q&A profile
Connected Services Framework Move CSF databases to a different SQL Server Instance
Hi, I need to move the databases created by CSF to a different SQL Server Instance. Where and what will be the changes required to be done to get the system running again. Ashish What is meant by "CSF Database structure and data was not modified" We havent modified the schema of the databases. But whats the "data" being referred in the above statement Ashish ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Shader to Mimic BasicEffect Textures
Just in case I am overlooking the obvious, is there an easy way of getting the textures that are linked to a mesh BasicEffect somehow knows which textures are for which part of the mesh, is this behaviour easy to mimic in a user definded shader I have per pixel lighting with specular/diffuse working great, I just need this last peice of the jigsaw. Any help is much appreciated. I must be thick or something .... I have one mesh with 8 textures on it. I can get the textures into an array from the mesh effects. But I have to replace the Mesh effect like this for it to render with my effect (idea from this forum) - foreach ( ModelMesh mesh in cItem.Me ...Show All
SQL Server Error during install of SqlServer 2005 64 Bit edition - please help!
Hi Folks, I'm receiving an error when i'm trying to setup a maintenance plan. I'm getting weird errors (and cannot continue) and i'm thinking it's related to a 32 bit error i received during installation on a 64 bit edition. Background We have a sql server behind hosted on a dedicated 64 bit box out of SanFran. The hosting company installed the 32 bit version of SqlServer 2005 standard on the box and I requested them to remove it and put the 64 bit edition on. They removed the 32 bit edition and installed the 64 bit edition. So far so good. I installed sp1 and that was fine. I then tried to start a MAINTENCE PLAN and was denied -> the component was not installed. I've asked them to install th ...Show All
Visual Studio Express Editions Concurrency Problems
Hi Vb Gurus, I am writing a simple application, just like the Microsoft Outlook Task, one problem I have encountered is the "concurrency error" when updating the table. I only have one database, but since the applciation needs at least three forms which is also using the same dataset, therefore i have dataset, dataset1, & dataset2. In my opinion since I am only using one database, then therefore when I update one dataset, then the other dataset should also be updated Is this wrong I also tried to update all the 3 datasets but I still have the same concurrency error. Please help me to resolve this conflict thanks. ...Show All
SQL Server Cube Processing Issue
We are trying to process the Cube. First time when we processed the cube it took around 1 and 1/2 hours to do full process. But after some time in the same environment its taking more then 6 hours to process. As such there was no change in the environment. We have 64 bit 2 way itinium processor with 32 GB of ram. The size of the cube is aroung 150 MB. We are using the OLE DB2 provider to connect to database.Any environmental issues that needs to be checked.Any thoughts on this issue.Appriciate your help. Thnaks, There does not seems to be any issue with Relational Database side .If I ran the same cube from machine its peocessing very fast.Any factor in analysis box that that can count for slow processing . Analytical bo ...Show All
Smart Device Development Question on DRK
I am currently using Visual Studio 2005 Professional Edition. I looked at the link for Windows Mobile 5.0 Developer Resource Kit and ordered the free copy but have not installed it. I was wondering, do I need to install the Windows Mobile 5.0 Developer Resource Kit if I already have the Visual Studio 2005 Professional Edition I have ActiveSync 4.1 installed from when I loaded it for my pocket pc. I want to develop for WM5.0. How do I just install WM 5.0 SDK. (why won't this have loaded when I load VS2005) Please help! ...Show All
Visual C++ conversion from BYTE to string in C
Hi, i need to convert a byte array to string in C. but i dont know how to perform that code. plz some one help me with sample code. CWnd* pWnd = GetDlgItem(IDC_LIST1); ASSERT( pWnd ); pWnd->SendMessage( LB_ADDSTRING, 0, (LPARAM) msgg); HTH ...Show All
Visual Studio 2008 (Pre-release) DataBinding:ComboBox doesn't refresh on Collection change - How do I notify the Target of a collection change
I have a ComboBox which binds to a volatile collection. When the collection is changed, the ComboBox (drop-down) list isn't refreshed if it has already been dropped down by the user. If the user does not drop-down the list before the collection change, then it does a fresh read on the source and gets the correct data. I'm wondering if there is a notification event that I need to raise other than the standard PropertyChanged to force the ComboBox to refresh. Note: The collection object has no access or awareness of the control (as it shoudl be) so it can't be done manually. Thanks Nik I've tested the ComboBox, It does refresh its visuals when the underlying data bound collection chang ...Show All
Visual Studio Team System web test error
the application that i am testing right now does not have a logo on the page which is a small thing how ever for every link VSTS fails the whole set of requests because of this error.....how can i prevent this....i had heard that you can use extraction points to achieve the same however i am not able to understand where to apply those extraction field validation. Kindly help Hi aashta, I'm not sure what's going on, but when you say there is no logo, my guess is that you are talking about in the Web test viewer when you are replaying the Web test. Is that correct The Web test viewer attempts to display as much of the Web test as it can when you replay it, but it has limitations. The Web test res ...Show All
Software Development for Windows Vista SQLTracking and Persistence
Hi, At the moment, I can't make SQLTracking and SQLPersistenceService work together. Here are my situation: Situation 1 - SDK (v6.0) Sample : Technologies\Hosting\PersistenceServices When I run the Sample, it works ok, so I tried to add the TrackingService to it with the following VB.NET Code: Dim TrackingService As New SqlTrackingService(TrackingStoreConnectionString) currentWorkflowRuntime.AddService(TrackingService) I didn't write any code to add Tracking Profile yet. But this time when I run the application, it stopped at the line: Workflow is idle And then keep on wating. No persistence occur. Why Situation 2 - ASP.NET (State Machin Workflow) I have an ASP.NET page which start the workflow l ...Show All
Windows Forms Applicatio name doesn't appear in the open with dialog
Hello I created a C# application that create my on file with my own extention. When I associate the file extension to my program in Windows XP "Open with..." dialog, only the program icon appears in the association dialog but not the program name. This is happening with all my c# programs. Does any body know how to make the program name to show up too Do I need to add something in the projects properties or something else Thanks ahead Roy Hi, In VS2003 you can change the productname in AssemblyInfo.cs file. Put the name in [assembly: AssemblyProduct("ProductName here")] Thank you ...Show All
Visual C++ destructors and SEH
got code class A { public: ~A () { std::cout << "~A\n"; } }; void f2 () { int u = 0; //int z = 9 / u; throw (0); } void f () { A a; f2 (); } int main () { __try { f (); } __except (EXCEPTION_EXECUTE_HANDLER) { std::cout << "exc\n"; } } output : exc code : class A { public: ~A () { std::cout << "~A\n"; } }; void f2 () { int u = 0; //int z = 9 / u; throw (0); } void f () { A a; f2 (); } int main () { try //__try { f (); } //__except (EXCEPTION_EXECUTE_HANDLER) catch (...) { std::cout << "exc\n"; } } Output : ~A \n exc code: class A { public: ~A () { std::cout << "~A\n" ...Show All
SQL Server Barcode in SSRS
Hi, Is there a way to make the barcode graphics, providing the barcode number, in ssrs, without having to install anything on the ssrs server Does the Reporting services tool has something that allows me to do that convertion Thank you ...Show All
Visual Studio 2008 (Pre-release) Access Database Connectivity in WPF Applications
Hi everybody ... i am building a WPF application and i want the application to access a database that i made using Access 2003. string myConnStr = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=D:\\Folder\\Dbase.mdb; User Id=admin; Password=" ; OleDbConnection myConn= new OleDbConnection (myConnStr); myConn.Open(); uptil now there is no problem and if check myConn.State --> it gives opened :)\ Now i want to start displaying records and manupilating them , so i wote : string myQuery = " SELECT Name From User" ; OleDbCommand cmd = new OleDbCommand (myQuery, myConn); OleDbDataAdapter da = new OleDbDataAdapter (cmd); DataSet ds = ...Show All
Visual Studio Express Editions form question
Normally form 1 is set to be the first page of our application, is there a way to set form2 to be the first slide of our application in the case where we have several forms Hi Wencey, I'm guessing this is what you're after, but in Solution Explorer, double click My Project. It'll open a new window. You can change the startup form here. Hope this helps, Bort ...Show All
