2013년 11월 28일 목요일

2013년 9월 13일 금요일

UDS Messenger update Ver 1.0.0.9/1.0.1.0 Beta - Additional display features a user group



1. UDS Messenger free download
   Download Ver 1.0.1.0 Beta

2. UDS Messenger update
  - Additional display features a user group
  - Improve other errors

※ Any problems caused by using the program the responsibility of the user and
   The developer can not be held responsible.
   Thank you for using the program.

2013년 8월 20일 화요일

UDS Messenger update Ver 1.0.0.8 - ODBC DB users can be added by connecting an external.


1. UDS Messenger free download

2. UDS Messenger update
  - Improved remote control part
  - ODBC DB users can be added by connecting an external
  - Add Hangul language files(UDSServer.KOR, UDSClient.KOR)

※ Any problems caused by using the program the responsibility of the user and
   The developer can not be held responsible.
   Thank you for using the program.

2013년 7월 26일 금요일

UDS Messenger update Ver 1.0.0.7 - Remote control features have been added.



1. UDS Messenger free download Ver 1.0.0.7

2. UDS Messenger update Ver 1.0.0.7
  - Remote control features have been added.

※ Any problems caused by using the program the responsibility of the user and
   The developer can not be held responsible.
   Thank you for using the program.

2013년 7월 12일 금요일

UDS Messenger update Ver 1.0.0.6 - Auto Backup Feature

      





1. UDS Messenger free download Ver 1.0.0.6
   Download

2. UDS Messenger update Ver 1.0.0.6
  - Auto Backup Feature

  - Improve other errors

※ Any problems caused by using the program the responsibility of the user and
   The developer can not be held responsible.
   Thank you for using the program.

2013년 6월 22일 토요일

UDS Messenger update Ver 1.0.0.5 - Add file sharing


1. UDS Messenger free download Ver 1.0.0.5
   Download

2. UDS Messenger Ver 1.0.0.5 Updates

  - Add file sharing
  - Improve other errors


※ File sharing between users can easily share files is a very handy feature.
   However, in the case of file-sharing maliciously leak your personal files, such as commercial file-sharing problems at the time of possession, so carefully, please share.

※ I use a program from the developer can not be held responsible. Thank you for using the program.




2013년 6월 3일 월요일

UDS Messenger update Ver 1.0.0.3 ~ 4

1. UDS Messenger free download Ver 1.0.0.4
  Download

2. UDS Messenger Ver 1.0.0.4 Updates

  - After modifying the file transfer server error message
  - All messages sent from the server to the client when adding the transfer function
  - Click Cancel when the file transfer error correction


---------------------------------------------

1. UDS Messenger free download Ver 1.0.0.3
   Download

2. UDS Messenger Ver 1.0.0.3 Updates
   - Treatment for unstable network conditions have been improved.

※ Android Mobile Chat Client programs are in development.

2013년 5월 16일 목요일

UDS Messenger Ver 1.0.0.2, How to program in conjunction with(Delphi source)


1. UDS Messenger file
2. UDS Messenger Ver 1.0.0.2 Updates
    • Add a message send and receive the UDS Messenger Client DLL function
    • Client (EXE) to connect to distinguish Client DLL connect and display.
    • On a chat screen is displayed in the Windows TaskBar
    • Adding Client DLL's main form of message passing features in the chat window (after the message, type CTRL + SHIFT + ENTER)

3. How to put a program in the Messenger client
 * The sample source :  Dll_Client_Test.zip

[ Source Code(Delphi) ]
1) DLL for connecting Type
type
  TCreateChatForm = function(AMainHandle: HWND; AId, APwd, APName: PChar; AIsAutoLogin: Boolean): HWND; cdecl; //Create function chat form
  TSendMessage = function(AId, AMsg: PChar; ASendMethod: Integer): Boolean; cdecl; //Message transfer function
  TDestoryChatForm = procedure; cdecl; //Turn off chat Form Memory

2) Variable declaration
  private
    FChatFormHwnd: HWND;//Save chat window handle value of
    FChatFormLib: THandle; //The value of the handle of the DLL Chat

  public
    Procedure WMCopyData(var AMsg: TWMCopyData); message WM_COPYDATA; //Function to receive messages

3) Create a chat form
procedure TForm1.FormShow(Sender: TObject);
var
  CreateChatForm: TCreateChatForm;
begin
  FChatFormLib := Loadlibrary('UDSClientLib.dll');
  if FChatFormLib <> 0 then
  begin
    @CreateChatForm := GetProcAddress(FChatFormLib, 'CreateChatForm');
    if @CreateChatForm <> nil then
      FChatFormHwnd := CreateChatForm(Self.Handle, PChar('aa'), PChar('aa'),
        PChar('TestUser'), True);
  end;
end;

4) End of chat form
procedure TForm1.FormClose(Sender: TObject; var Action: TCloseAction);
var
  DestoryChatForm: TDestoryChatForm;
begin
  if FChatFormLib <> 0 then
  begin
    @DestoryChatForm := GetProcAddress(FChatFormLib, 'DestoryChatForm');
    if @DestoryChatForm <> nil then
      DestoryChatForm;
    FreeLibrary(FChatFormLib);
  end;
end;

4) Send message
procedure TForm1.BitBtn2Click(Sender: TObject);
var
  SendMessage: TSendMessage;
begin
  if FChatFormLib <> 0 then
  begin
    @SendMessage := GetProcAddress(FChatFormLib, 'SendMessage');
    if @SendMessage <> nil then
    begin
      if SendMessage(PChar(edId.Text), PChar(meMsg.Lines.Text), rgMsgType.ItemIndex) then //ID, message transmission method (message displayed in the chat window: 0, 1: Program display)
        ShowMessage('OK')
      else
        ShowMessage('False')
    end;
  end;
end;

5. Receiving a Message: Windows message WM_COPY method used
* Structure of the received message: ID + #1 + Name + #2 + Message 
procedure TForm1.WMCopyData(var AMsg: TWMCopyData);
  procedure DisplayMsg(AStr: String);
  var
    i: Integer;
    cId, cNm, cMsg: String;
  begin
    i := Pos(#2, AStr);
    if i <= 0 then
      Exit;
    cId := Copy(AStr, 1, i -1);
    cMsg := Copy(AStr, i + 1, Length(AStr));

    i := Pos(#1, AStr);
    if i <= 0 then
      Exit;

    cNm := Copy(cId, 1, i -1);
    cId := Copy(cId, i + 1, Length(cId));

    ShowMessage('ID = ' + cId + #$D#$A +
      'Name = ' + cNm + #$D#$A +
      'Message = ' + cMsg);
  end;
var
  PBuff: PChar;
  SubStr: string;
begin
  PBuff := StrALloc(AMsg.CopyDataStruct.cbData);
  try
    StrCopy(PBuff, AMsg.CopyDataStruct.lpData);
    SubStr := Trim(PBuff);
    if AMsg.CopyDataStruct.dwData = $0717 then
      DisplayMsg(SubStr);
  finally
    StrDispose(PBuff);
  end;

  inherited;
end;

2013년 5월 12일 일요일

UDS Messenger update Ver. 1.0.0.1


UDS Messenger Ver1.0.0.1 download

* UDS Messenger update Ver 1.0.0.1
  - Do not ask for folder to save the file downloads.
  - If you close the chat window during file transfer, file transfer error Fix.
  - Change the default skin of the program.
  - When you log out of the chat, the chat window is closed error Fix.
  - Name column of the main screen, adjust the size automatically.

2013년 5월 10일 금요일

UDS Messenger Ver. 1.0.0.0

* Messenger file.
1. UDSServer.exe : Messenger server executable file
2. UDSClient.exe : Messenger client executable file
3. UDSClientLib.dll : Messenger client DLL file.
4. UDS_Client_Sample_Source.zip : Use UDS Messenger DLL Delphi sample source

UDS Ver 1.0.0.0 download

UDS Client sample source download