网站建设| 数据库类| 图形图象| 程序设计| 现代办公| 操作系统| 考试认证| 网络技术| 软件工程| 电脑相关| 文学作品
网站开发| 网页制作| 操作系统| 图象图形| 考试认证| 数据库类| 程序设计| 硬件技术| 现代办公| 网络技术| 笑话频道
 
您的位置: 电脑书库首页-> 电脑文摘-> 数据库类-> PowerBuilder-> PB中消息对话框的居中显示

PB中消息对话框的居中显示
作者:佚名 来源:InterNet 加入时间:2005-1-31
相关文章
  • 如何在PB中制作特殊形状数据窗口或按钮
  • PB和EAServer共筑多层应用架构
  • PB中的数据窗口自动刷新技术
  • PB中读取地磅BCD解码
  • PB通过OLEObject使用Word
  • PB动态报表格式自由定义的实现
  • 为PB的TreeView实现同步选择
  • 如何用pb实现MSACCESS数据库的图片字段存取
  • 在PB中应用灵活多样的排序
  • 在PB中如何使用Microsoft Outlook发送邮件
  • 相关书籍:
    SharedObject系列函数
    和共享对象有关的函数包括:SharedObjectRegister、SharedObjectGet、SharedObjectUnregister和SharedObjectDirectory函数。
    首先,用SharedObjectRegister函数初始化共享对象,并建立一个单独的线程。如:
    SharedObjectRegister (“ccuo_thread” ,“thread1” )
    其中ccuo_thread是一个共享的自定义类用户对象的类名,thread1是共享对象实例的共享名。如果SharedObjectRegister函数返回Success,则新线程创建成功。
    然后,执行指定代码。有两种方法让新线程执行指定的代码:一种是在自定义类用户对象的constructor事件中编写脚本,新线程创建后就会自动执行该事件脚本;另一种方法是使用SharedObjectGet函数。该函数实现共享对象实例的引用,如:
    SharedObjectGet ( “thread1” ,inv_thread )  
    其中inv_thread是用来存储共享对象实例的一个对象变量,要求与ccuo_thread具有同一个类名。
    最后,通过使用Post语句,即以inv_thread.Post of_function(agrs)的形式,异步调用共享对象的函数of_function。
    在完成任务后,可以用SharedObjectUnregister函数中止线程,也可用SharedObjectDirectory函数列出所有有效的共享对象。
    函数调用部分
    本文所用Win32 API函数原型为:
    Function Ulong FindWindowA ( String lpClassName ,String lpWindowName ) Library “user32.dll”
    Function Ulong GetTickCount ( ) Library “kernel32.dll”  
    Function Ulong GetDesktopWindow ( ) Library “user32.dll”  
    Function Boolean GetWindowRect ( Ulong hWnd ,ref stc_rect lpRect ) Library “user32.dll”
    Function Boolean MoveWindow ( Ulong hWnd ,int X ,int Y ,int nWidth ,int nHeight ,Boolean bRepaint ) Library “user32.dll”  
    下面具体讨论如何实现消息对话框的居中显示:
    //声明对象变量
    ccuo_thread lccuo_thread  
    //创建新线程
    SharedObjectRegister (‘ccuo_thread’ ,‘thread_center’ )
    //引用实例
    SharedObjectGet (‘thread_center’ ,lccuo_thread )  
    //调用窗口居中函数
    lccuo_thread.Post of_center (‘#32770’ ,‘Demostration’ ,2000 )  
    //创建消息对话框
    MessageBox ( ‘Demostration’ ,‘Copyright(c) 2001 by Y.L.Sun’ )  
    //中止线程
    SharedObjectunRegister ( ‘thread_center’ )  
    函数实现部分
    实现窗口居中显示的函数是自定义类用户对象ccuo_thread的对象函数of_center,其实现代码如下:
    ccuo_thread.of_center ( String lpclassname ,String  
    lpwindowname , Ulong dwtimeout ) return Boolean
    //lpclassname: 消息对话框的类名(#32770)
    //lpwindowname: 消息对话框的标题
    //dwtimeout: 超时计数
    Ulong lul_hwnd //存放消息对话框的句柄
    Ulong lul_start //计时开始时刻的值
    lul_start = GetTickCount ( ) //计时开始
    do
    //查找顶层窗口
    lul_hwnd=FindWindowA ( lpclassname ,lpwindowname )
    //找到顶层窗口后,跳出循环
    if lul_hwnd <> 0 then exit
    //判断是否已超时
    loop while GetTickCount( )-lul_start< dwtimeout  
    //没有找到消息对话框
    if lul_hwnd = 0 then  
    return false  
    else
    //对话框居中
    return of_center ( 0 ,lul_hwnd )  
    end if
    of_center的重载函数代码如下:
    ccuo_thread.of_center ( Ulong hwndp ,Ulong hwndc ) return Boolean
    //hwndp:父窗口的句柄,值为0时认为是桌面
    //hwndc:子窗口的句柄  
    int li_x //窗口的X坐标
    int li_y //窗口的Y坐标
    stc_rect lstc_parent //父窗口的4边坐标
    stc_rect lstc_child //子窗口的4边坐标
    //值为0时认为是桌面
    if hwndp = 0 then hwndparent =  
    GetDesktopWindow ( )  
    //获得窗口的4边坐标
    if not GetWindowRect ( hwndcurrent ,lstc_child ) then return false  
    if not GetWindowRect ( hwndparent ,lstc_parent ) then return false
    li_x = (( lstc_parent.right - lstc_parent.left ) -  
    ( lstc_child.right -lstc_child.left )) /2
    li_y = (( lstc_parent.bottom - lstc_parent.top ) -  
    ( lstc_child.bottom -lstc_child.top )) /2
    //计算子窗口的X、Y坐标
    if li_x < 0 or li_y < 0 then return false  
    //移动子窗口
    if not MoveWindow ( hwndcurrent ,li_x ,li_y ,lstc_child.right -lstc_child.left ,lstc_child.bottom - lstc_child.top ,false ) then return false  
    return true
    本文代码在PB 7.0下通过。

    [文章录入员:nancy]

    相关文章
  • 如何在PB中制作特殊形状数据窗口或按钮
  • PB和EAServer共筑多层应用架构
  • PB中的数据窗口自动刷新技术
  • PB中读取地磅BCD解码
  • PB通过OLEObject使用Word
  • PB动态报表格式自由定义的实现
  • 为PB的TreeView实现同步选择
  • 如何用pb实现MSACCESS数据库的图片字段存取
  • 在PB中应用灵活多样的排序
  • 在PB中如何使用Microsoft Outlook发送邮件
  • 相关书籍:
    本站推荐内容

    近期主机类热搜关键词:
    美国服务器 美国服务器租用 海外服务器租用 国外服务器租用

    PowerBuilder
    ACCESS
    MS SQL
    MySQL
    Oracle
    Foxpro
    PowerBuilder
    Sybase
    其它
    电脑教程阅读排行
    ·浅析PowerBuilder下动...
    ·PowerBuilder连接Sy...
    ·用Powerbuilder开发W...
    ·在powerbuilder中向E...
    ·PB通过OLEObject使用W...
    ·PB中读取地磅BCD解码
    ·在PowerBuilder中操作...
    ·PB动态报表格式自由定义的实现
    ·PB开发Sybase数据库应用技...
    ·如何在PB中制作特殊形状数据窗口...