Search found 12 matches

by komal
Thu, 2008-03-13, 06:20
Forum: DCMTK - General
Topic: Time zone and Query/Retrieve
Replies: 7
Views: 7822

Eureka ! I have found fixed the issue. The issue was not related to DCMTK but due to some MFC programming bug .

I apologise for wasting others time on this issue.

Regards
komal
________
Chrysler Voyager history
________
vaporizer
by komal
Thu, 2008-03-13, 04:35
Forum: DCMTK - General
Topic: Time zone and Query/Retrieve
Replies: 7
Views: 7822

I am still stuck with this issue. Any clues would be appreciated.

Regards
Komal
________
volcano vaporizers
by komal
Fri, 2008-03-07, 10:11
Forum: DCMTK - General
Topic: Time zone and Query/Retrieve
Replies: 7
Views: 7822

I am using my own DCMTK based software (developed using MFC). I am using PACSOne as DICOM Server. I used iQ-VIEW to confirm that this was not an issue with the PACSOne server. iQ-VIEW works fine irrespective of the time zones. Thus it seems that the problem lies with my application. This is a really...
by komal
Fri, 2008-03-07, 06:00
Forum: DCMTK - General
Topic: Time zone and Query/Retrieve
Replies: 7
Views: 7822

Are there any dcmtk time zone settings that I need to take care of?

Regards
Komal
________
Toyota MR2 history
________
Toyota Van
by komal
Thu, 2008-03-06, 11:41
Forum: DCMTK - General
Topic: Time zone and Query/Retrieve
Replies: 7
Views: 7822

Yes, the application has been developed using DCMTK. The DICOM query is successful but no images are retrieved for non-Indian Standard Time. Query is perfomed using the Patient ID field only. The same query (as mentioned above) is successful and images are retrieved for Indian Standard Time. Hope th...
by komal
Thu, 2008-03-06, 06:53
Forum: DCMTK - General
Topic: Time zone and Query/Retrieve
Replies: 7
Views: 7822

Time zone and Query/Retrieve

Dear All, I am witnessing a very strange behaviour as follows: I have a PACSOne server (running on WAMP) installed on a machine in Ottawa,Canada. I built a DICOM application here in India. I copied the DICOM EXE to the ottawa machine. Now this DICOM application (on the Ottawa server) performs ECHO a...
by komal
Thu, 2008-01-03, 08:26
Forum: DCMTK - General
Topic: Aborting a DICOM operation
Replies: 5
Views: 5901

Thanks a lot Marco. The information you provided has been helpful.
________
volcano vaporizer
by komal
Mon, 2007-12-31, 11:33
Forum: DCMTK - General
Topic: Aborting a DICOM operation
Replies: 5
Views: 5901

Happy New Year :-) I tried using the thread model. I have created a single thread that performs the DICOM operation. I have not used any Events. I am simply using another button to ABORT the DICOM opertaion (being executed by the thread). However, I am facing an issue which i think is related to glo...
by komal
Tue, 2007-12-18, 03:27
Forum: DCMTK - General
Topic: Aborting a DICOM operation
Replies: 5
Views: 5901

Thanks alwittta. I shall give you recommendation a try.
________
herbal health
________
Consorte
by komal
Mon, 2007-12-17, 11:23
Forum: DCMTK - General
Topic: Compiling problem
Replies: 1
Views: 2919

I hope you are including the following in your visual studio project:
1. DMCTK lib files
2. providing the path to the DCMTK header files

-Cheers
Komal
________
Mazda 767 picture
________
vapor genie vaporizer
by komal
Mon, 2007-12-17, 11:16
Forum: DCMTK - General
Topic: How to get the value of each data element
Replies: 2
Views: 3800

You can follow the steps mentioned below: 1. Get hold of DcmItem object. 2. Use nextInContainer method of DcmItem object. This returns a DcmObject object. 3. Use getTag method of DcmObject object. This returns a DcmTag object. 4. Use methods og DcmTag to get the information related to a tag (e.g. VR...
by komal
Mon, 2007-12-17, 10:59
Forum: DCMTK - General
Topic: Aborting a DICOM operation
Replies: 5
Views: 5901

Aborting a DICOM operation

Hello There, I am building an MFC application using VS 2003. I have a requirement of aborting an operation whenever the user chooses to do so. I am trying to use the code OFCondition cond = ASC_abortAssociation(g_Assoc); if (cond.bad()) { WriteToLog("\r\nAssociation Abort Failed:"); WriteT...