Tim Bederka's Q&A profile
Visual C++ How to execute DCM converter in VC++
Hi, I am new to VC++ and i am working on DCM Converter. I found this project (i.e. DCM Converter) on net. but i failed to execute it in VC++ environment. I downloaded that source code from net. That uses CxImage and DCMTK. I downloaded the source code of both these(DCMTK and CxImage) and put that in a folder along with dcm converter. I changed the project settings as directed on Cximage web page. then i compiled all the three (dcm converter, DCM ...Show All
Visual Studio Merge Module missing
Hello, I've just upgraded from .NET 2003 to 2005 (and also reformatted my harddrive). I ran the conversion wizard on a solution that I am working with. I've just tried to deploy it for the 1st time, and I get the error message "Unable to find module file 'C:\Program Files\Common Files\Merge Modules\Crystal_database_Access2003_enu.msm' How do I get this file back Do I need it Can I delete the reference to it TIA, Amber ...Show All
Visual C# How to find registered event handlers?
Hi, I'm trying to determine if an object has any event handlers registered on it. The reason I need this, is to not let an object to register one single event twice. this .menu.BeforePopup += new CancelEventHandler(menu_BeforePopup); // OK this .menu.BeforePopup += new CancelEventHandler(menu_BeforePopup); // Don't let it happen twice Any help would be great You can only do that from within the class that provides t ...Show All
.NET Development Creating Arrays in Tables
How do I create an array in a SQL database table Any advice is very much appreciated. That's exactly what I meant. Thanks for the reply I will give it a go. ...Show All
Visual Studio Express Editions creating dll's
hey i am designing a program and i was wondering if it is possible to create a dll in Visual Basic Express Edition well, maybe I should rephrase that. I'm designing a program where when you click a button it opens a text editor(already have that made). Someone told me that to reference the program in the code you need to create a dll(is this true ) Shak, Normally there is a path variable which includes t ...Show All
Visual C# How to free up memory in C# apps?
hi.. In my application so many variables and XML files are used .. eventhough after finishing off the work with the file, im closing that. It works fine with few number of files but when i uses more than 50 files the application crashes... So. is there any way to resolve this by clearing the memory. need help !!! You need to make sure you call Dispose on any variable that has that method, before ...Show All
Visual Studio Express Editions Search
Ok i was wonderin. Can I, and if so, how do you search or if you like 'Scan' a hard drive with vb for a filename such as lala.exe or what eva. I'd love to know! Directory.GetDirectories and Directory.GetFiles can be used to recurse over a directory structure and apply a search string. ...Show All
Visual C++ Native allocation in a managed C++ class library
Hello, I just want to allocate a native object using the IJW in a managed class library. I usually do this normally in a Windows Forms application. But when I make managed C++ class library and try to allocate with new keyword it doesn't recognize this keyword . I don't why . Thanks, Mustafa ELBanna Can you provide a code example that shows this problem. The following works f ...Show All
Visual Studio Team System How do I add a test to my TEAM Build
Hi all, I am createing a new build type for my application and on the Options screen I would like to add a test to it. I check the "Run Test" check box, and the drop downs became enabled, but they are empty. How do I get tests in them Thanks, J James, This dropdown gets populated with the test metadata files (.vsmdi files) available in the workspace view you chose in the build type creation wizard. This fi ...Show All
Windows Forms Typed Dataset filter count
Hi all, I am filtering a dataset and want to get the count of the filtered result set. Here is what I have tried: string s = GetFilterString (); iNVENTORYTableAdapter . FillByDate ( carol_geDataSet . INVENTORY , EditDate ); iNVENTORYBindingSource . Filter = s ; int i = 0; DataRow [] t = carol_geDataSet . INVENTORY . Select (); i = t . Length ; lblCount . Text = i . ToString (); I get the count of the total ...Show All
.NET Development Custom DataTable Attributes
Hi there, I have a Business Entity which inherits from DataTable. It has some custom properties like BaseLanguage. My Business Process returns the filtered rows fine to the ObjectDataSource and binds to the new ASPDataList and using Eval and Bind displays my data. The issue is this: Why cant I bind to other properties of my BusinessEntity other than the Data Rows I have tried putting them in ExtendedProperties and having them as simple Pro ...Show All
Smart Device Development power management
Being frustrated by Windows Mobile 5 based device not going out of standby by pressing Voice Dial button on my bluetooth headset, I started looking for a solution. I failed to find any information about internals of power management in WM5. What exactly can bring it out of standby mode Why it powers up when I press the "redial last number" button on the headset, but remains in a sleep mode when I press "voice dial" Is there any way to catch e ...Show All
Visual Studio Team System Sourcecode corruption
I'm having some strange problems using Source Control. Previously I added a borland project just to test how the Source Control worked, and then deleted the files when I had played around with checkout, checking, testing with work items etc. I've now created a small project in VS 2003, and added the project to TF Source Control. When opening the solution from source, the content of the solution file has completely different content from what I c ...Show All
Smart Device Development The Microsot Visual Remote Debugging Monitor(MSVSMON.EXE) does not appear to be running on the remote computer
Hello: I am trying to connect to the remote server, which is a mobile device. Whenever I am trying to execute the program, an exception is thrown on my desktop application. Error: Unable to automatically step into the server. Connecting the server machine "xx.x.xx.xx" failed. The Microsoft Visual Studio Remote Debugging Monitor(MSVSMON.EXE) does not apper to be running on the remote computer. Please see Help for assistance. If ...Show All
SQL Server Using Ownership Chains
How I can disable Ownership chains.For Example Joe creates a procedure called procedure1 , which depends on Table1 (also owned by Joe ), and with executed procedure1 insert one record in table1,we assume Joe grants Mary permission to use procedure1,But Mary do not permission To insert record to Table1 (Deny To Insert in Table1),and I Expect To see "Insufficient Permissions" error, But It did't happen and record inserted in Table ...Show All
