Welcome Guest! To enable all features, please Login or Register.

Notification

Icon
Error

Options
View
Last Go to last post Unread Go to first unread post
#1 Posted : Monday, November 21, 2011 1:40:52 AM(UTC)
Gunasekaran

Groups: Registered
Posts: 53


Hi
I am using Leadtools licensed version 15.0.
I have come across Another third party tools for sending images to 1 client to another client.
for example:(another third party tool code)
DICOM PIng:
Dim g As New DicomGlobal
Dim result As Integer
result = g.Echo("192.168.1.19", "1000", "DICOM", "AETITLE")
If hex4(result) = "0000" Then
MsgBox ("Connected")
End If

Send Images:
Dim image As dicomobjects.DicomImage
image.Send("192.168.1.19", "1000", "DICOM", "AETITLE")

Does it avalable in leadtools like this simple code to check AE title entity (Ping status) and send images to another PACS?

Kindlyhelp me.

Regards
Guna
 

Try the latest version of LEADTOOLS for free for 60 days by downloading the evaluation: https://www.leadtools.com/downloads

Wanna join the discussion? Login to your LEADTOOLS Support accountor Register a new forum account.

#2 Posted : Tuesday, November 22, 2011 7:47:46 AM(UTC)

Travis  
Travis

Groups: Registered, Tech Support
Posts: 207

Was thanked: 3 time(s) in 3 post(s)

Here is the LEADTOOLS version that will store all the DICOM files in a folder:
Public Sub StoreDirectory()
         DicomEngine.Startup()
         DicomNet.Startup()

         Dim cstoreFolder As StoreScu = New StoreScu()
         Dim scp As DicomScp = New DicomScp()

         ''
         '' Change these parameters to reflect your Dicom server.
         ''
         scp.AETitle = "MI_SERVER"
         scp.Port = 104
         scp.Timeout = 60
         scp.PeerAddress = IPAddress.Parse("10.1.1.96")

         cstoreFolder.Compression = Compression.Native
         cstoreFolder.Store(scp, LEAD_VARS.ImagesDir, "*.*", False)

         DicomNet.Shutdown()
         DicomEngine.Shutdown()
     End Sub


Public NotInheritable Class LEAD_VARS
   Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"
End Class
Travis Montgomery
Senior Sales Engineer
LEAD Logo
 
#3 Posted : Sunday, December 11, 2011 10:46:17 PM(UTC)
Gunasekaran

Groups: Registered
Posts: 53


Hi Travis

Thanks for the response.


 
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

Powered by YAF.NET | YAF.NET © 2003-2024, Yet Another Forum.NET
This page was generated in 0.107 seconds.