1、toolbar背景怎么透明,从而可以显示窗体背景图片
2、shellexecute如何同时mailto,subject呢,如ShellExecute(handle,nil,pchar('mailto:[email protected]'),nil,nil,sw_shownormal);怎么样能同时指定subject邮件主体呢
谢谢

解决方案 »

  1.   

    1)toolbar1.Transparent := True;
    2)try this:
    ShellExecute(handle,nil, 'mailto:[email protected]?subject=ShowMeMoney',nil,nil,sw_shownormal);
      

  2.   

    flat :true工具条和他上面的按钮是透明的,工具条的边框只有在鼠标从上面经过时才会显示出来
      

  3.   

    1)toolbar1.Transparent := True;并不能实现背景显示
    ShellExecute(handle,nil, 'mailto:[email protected]?subject=ShowMeMoney',nil,nil,sw_shownormal);这个还是可以用的,谢谢了
    谁知道
    toolbar背景怎么透明,从而可以显示窗体背景图片
      

  4.   

    能同时指定subject邮件主体和内容的
    ShellExecute(Handle,'Open',PChar('mailto:[email protected]?subject=hello&body=say hello', nil,nil,SW_Show));
      

  5.   

    toolbar背景怎么透明,从而可以显示窗体背景图片
    ================================
    ?????????????????????
      

  6.   

    Toolbar1.Transparent := True;
    ShellExecute(Handle,nil, 'mailto:[email protected]=你的主题',nil,nil,SW_ShowNormal);