﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>BlogJava-gdufo-随笔分类-OA(Moss+Infopath)</title><link>http://www.blogjava.net/gdufo/category/42656.html</link><description /><language>zh-cn</language><lastBuildDate>Tue, 05 Nov 2013 10:46:07 GMT</lastBuildDate><pubDate>Tue, 05 Nov 2013 10:46:07 GMT</pubDate><ttl>60</ttl><item><title>通达OA中，“数据选择控件”中增加第三方的数据来源</title><link>http://www.blogjava.net/gdufo/archive/2013/10/30/405786.html</link><dc:creator>gdufo</dc:creator><author>gdufo</author><pubDate>Wed, 30 Oct 2013 03:03:00 GMT</pubDate><guid>http://www.blogjava.net/gdufo/archive/2013/10/30/405786.html</guid><wfw:comment>http://www.blogjava.net/gdufo/comments/405786.html</wfw:comment><comments>http://www.blogjava.net/gdufo/archive/2013/10/30/405786.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/gdufo/comments/commentRss/405786.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/gdufo/services/trackbacks/405786.html</trackback:ping><description><![CDATA[在通达OA2009中，&#8220;数据选择控件&#8221;目前只有自带的三种类型数据。<br /><br />现增加第三方的数据来源，以增强其功能。<br /><br />一、<a href="file://\\10.110.2.210\d$\MYOA\webroot\general\system\workflow\flow_form\cool_form\data\config.php">MYOA\webroot\general\system\workflow\flow_form\cool_form\data\config.php</a><br />在Config.php 增加<br />'TX_USERS' =&gt; array("NAME" =&gt; "同享系统用户" , "CONTENT" =&gt; array("EMP_NAME" =&gt; "工号姓名",<br />&nbsp;&nbsp; "DEPT_NAME" =&gt; "部门","ZHIWEI" =&gt; "职位","ZHIWU" =&gt; "职务","ZHIJI" =&gt; "职级"))<br />二、<a href="file://\\10.110.2.210\d$\MYOA\webroot\general\workflow\list\input_form">MYOA\webroot\general\workflow\list\input_form<br /></a>
<p>增加连接MSSQL-SERVER的输出<br />if ($dataSrc == 'TX_USERS') {<br />if($act=="count")<br />&nbsp;&nbsp; $query = "select count(*) from OA_Employee_View where 1=1";<br />else<br />&nbsp;&nbsp; $query = "select top 10 $dataField from OA_Employee_View where 1=1";</p>
<p>if(strstr($dataQuery,"1,"))<br />{<br />&nbsp; $array1 = explode(",",$dataQuery);<br />&nbsp; $array2 = explode(",",$dataField);<br />&nbsp; $array3 = explode(",",$dataFieldName);</p>
<p>&nbsp; foreach($array1 as $k =&gt; $v)<br />&nbsp; {<br />&nbsp; &nbsp;if($v==1)<br />&nbsp; &nbsp;{<br />&nbsp; &nbsp;&nbsp;$name = $array2[$k];<br />&nbsp; &nbsp;&nbsp;$value = $$name;<br />&nbsp; &nbsp;&nbsp;if($value!="")<br />&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; $query .= " and $name like '%$value%'";<br />&nbsp; &nbsp;}<br />&nbsp; }<br />}<br />&nbsp; $txconn=mssql_connect($MSSQL_TX_SERVER,$MSSQL_TX_USER,$MSSQL_TX_PASS); <br />&nbsp; mssql_select_db($MSSQL_TX_DB,$txconn); <br />&nbsp; if($act=="count")<br />&nbsp; {<br />&nbsp; $cursor = mssql_query($query);<br />&nbsp;if($ROW=mssql_fetch_array($cursor))<br />&nbsp;&nbsp;&nbsp; $COUNT=$ROW[0];<br />&nbsp;echo $COUNT;<br />&nbsp;exit;<br />}</p>
<p>$cursor = mssql_query($query);<br />$COUNT=0;<br />$dataField_arr = explode(",",$dataField);<br />$dataFieldName_arr = explode(",",$dataFieldName);<br />while($ROW=mssql_fetch_array($cursor))<br />{<br />&nbsp; $COUNT++;<br />&nbsp;&nbsp; if($COUNT%2==1)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $TableLine="TableLine1";<br />&nbsp;&nbsp; else<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $TableLine="TableLine2";&nbsp;<br />&nbsp;&nbsp; foreach($dataField_arr as $k=&gt; $v)<br />&nbsp;&nbsp; {<br />&nbsp;&nbsp; &nbsp; if($v=="") continue;<br />&nbsp;&nbsp; &nbsp; if($COUNT==1)<br />&nbsp;&nbsp; &nbsp; {<br />&nbsp;&nbsp; &nbsp; &nbsp; if($k==0)<br />&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $thead.='&lt;table class="TableList" align="center" width="90%"&gt;&lt;tr class="TableHeader"&gt;';<br />&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $thead.='&lt;td nowrap align="center"&gt;'.$dataFieldName_arr[$k].'&lt;/td&gt;';<br />&nbsp;&nbsp; &nbsp; }<br />&nbsp;&nbsp;&nbsp;&nbsp; if($k==0)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $tbody.='&lt;tr class="'.$TableLine.'"&gt;'; <br />&nbsp;&nbsp;&nbsp;&nbsp; $tbody.='&lt;td nowrap align="center"&gt;'.$ROW[$v].'&lt;/td&gt;';<br />&nbsp;&nbsp; }<br />&nbsp;&nbsp; <br />&nbsp;&nbsp; if($COUNT==1) $thead.='&lt;td nowrap align="center"&gt;操作&lt;/td&gt;&lt;/tr&gt;';<br />&nbsp;&nbsp; $tbody.='&lt;td nowrap align="center"&gt; &lt;a href="#" class="orgAdd" onclick="addData(this)"&gt;添加&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;';<br />}<br />$tbody.="&lt;/table&gt;";<br />echo $thead.$tbody;<br /></p><img src ="http://www.blogjava.net/gdufo/aggbug/405786.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/gdufo/" target="_blank">gdufo</a> 2013-10-30 11:03 <a href="http://www.blogjava.net/gdufo/archive/2013/10/30/405786.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>通达OA 自动选择人中 增加 根据表单字段的直属上司 </title><link>http://www.blogjava.net/gdufo/archive/2013/10/30/405785.html</link><dc:creator>gdufo</dc:creator><author>gdufo</author><pubDate>Wed, 30 Oct 2013 02:53:00 GMT</pubDate><guid>http://www.blogjava.net/gdufo/archive/2013/10/30/405785.html</guid><wfw:comment>http://www.blogjava.net/gdufo/comments/405785.html</wfw:comment><comments>http://www.blogjava.net/gdufo/archive/2013/10/30/405785.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/gdufo/comments/commentRss/405785.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/gdufo/services/trackbacks/405785.html</trackback:ping><description><![CDATA[一、增加流程定义时可以选择项目<br />
<p><a href="file://\\10.110.2.210\d$\MYOA\webroot\general\system\workflow\flow_type\flow_design\view_list\edit.php">MYOA\webroot\general\system\workflow\flow_type\flow_design\view_list\edit.php</a></p>
<p>794行<br />&lt;option value="11" &lt;? if($AUTO_TYPE=="11")echo "selected";?&gt;&gt;按表单字段选择的直属上司&lt;/option&gt;</p>
<p><br /><a href="file://\\10.110.2.210\d$\MYOA\webroot\general\workflow\list\turn\condition.php">\\10.110.2.210\d$\MYOA\webroot\general\workflow\list\turn\condition.php</a><br />765行处增加<br />&nbsp; }elseif($AUTO_TYPE==11) //根据表单字段的主属上司来处理<br />&nbsp; {<br />&nbsp; &nbsp;if(is_numeric($AUTO_USER))<br />&nbsp; &nbsp;{<br />&nbsp; &nbsp;&nbsp; $query3 = "SELECT ITEM_DATA from FLOW_RUN_DATA where RUN_ID='$RUN_ID' AND ITEM_ID='$AUTO_USER'";<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $cursor3= exequery($connection,$query3);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if($ROW=mysql_fetch_array($cursor3))<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $ITEM_DATA = $ROW["ITEM_DATA"];<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $APPLY_USER_ID =&nbsp; substr($ITEM_DATA,strpos($ITEM_DATA,"_")-1);</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //根据前一节点的直属上司<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $query = "select EMP_MANAGECODE from user where user_id ='$APPLY_USER_ID'";<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $cursor= exequery($connection,$query);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if($ROW=mysql_fetch_array($cursor))<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $USER_ID=$ROW["EMP_MANAGECODE"];</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $query1 = "SELECT * from USER where USER_ID='$USER_ID'";<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $cursor1= exequery($connection,$query1);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if($ROW=mysql_fetch_array($cursor1))<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $PRCS_NEW_USER_ID=$USER_ID;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $PRCS_NEW_USER_NAME=$ROW["USER_NAME"];<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $PRCS_NEW_DEPT_ID=$ROW["DEPT_ID"];<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $PRCS_NEW_USER_PRIV=$ROW["USER_PRIV"];<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $PRCS_NEW_USER_PRIV_OTHER=$ROW["USER_PRIV_OTHER"];<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $PRCS_OP_USER=$PRCS_NEW_USER_ID;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $PRCS_OP_USER_NAME=$PRCS_NEW_USER_NAME;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $PRCS_USER_AUTO=$PRCS_NEW_USER_ID.",";<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $PRCS_USER_NAME=$PRCS_NEW_USER_NAME.",";</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /*//检查该发起人是否有经办权限<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if($PRCS_DEPT=="ALL_DEPT"||find_id($PRCS_USER,$PRCS_NEW_USER_ID)||find_id($PRCS_DEPT,$PRCS_NEW_DEPT_ID)||find_id($PRCS_PRIV,$PRCS_NEW_USER_PRIV)||priv_other($PRCS_PRIV,$PRCS_NEW_USER_PRIV_OTHER))<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $PRCS_OP_USER=$PRCS_NEW_USER_ID;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $PRCS_OP_USER_NAME=$PRCS_NEW_USER_NAME;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $PRCS_USER_AUTO=$PRCS_NEW_USER_ID.",";<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $PRCS_USER_NAME=$PRCS_NEW_USER_NAME.",";<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }*/</p>
<p>&nbsp;&nbsp;&nbsp; }<br />&nbsp; }<br />3.在流程定义处保存的地方也要修改<br />MYOA\webroot\general\system\workflow\flow_type\flow_design\view_list\update.php<br />的66修改成：<br />&nbsp; if($AUTO_TYPE==7<span style="color: red"> || $AUTO_TYPE==11)</span><br /></p><img src ="http://www.blogjava.net/gdufo/aggbug/405785.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/gdufo/" target="_blank">gdufo</a> 2013-10-30 10:53 <a href="http://www.blogjava.net/gdufo/archive/2013/10/30/405785.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>通达OA 连接SQL-Server2005</title><link>http://www.blogjava.net/gdufo/archive/2013/03/06/396121.html</link><dc:creator>gdufo</dc:creator><author>gdufo</author><pubDate>Wed, 06 Mar 2013 03:04:00 GMT</pubDate><guid>http://www.blogjava.net/gdufo/archive/2013/03/06/396121.html</guid><description><![CDATA[<div>&nbsp; 参考:http://www.cnblogs.com/xiaochaohuashengmi/archive/2011/07/29/2121347.html</div><div>&nbsp; &nbsp; &nbsp; http://www.soitway.com/woaibiancheng/19.html</div><div>&nbsp; 记得重启一下office_anywhere</div><div>&nbsp; 另:mssql.secure_connection = Off 要设置为 off</div><div>&nbsp; 在td_config.php(webroot\inc目录下)增加变量。</div><div>&nbsp; //-- OT 数据库配置</div><div>&nbsp; $MSSQL_OT_SERVER="192.168.1.1";</div><div>&nbsp; $MSSQL_OT_USER="sa";</div><div>&nbsp; $MSSQL_OT_DB="DBName";</div><div>&nbsp; $MSSQL_OT_PASS="XXXX";<br /><br /><div>function OpenOTConnection()</div><div>{</div><div>&nbsp;global $otconnection,$MSSQL_OT_SERVER,$MSSQL_OT_USER,$MSSQL_OT_DB,$MSSQL_OT_PASS;</div><div></div><div>&nbsp;if(!$otconnection)</div><div>&nbsp;{</div><div>&nbsp;<span style="white-space:pre">	</span> &nbsp;if(!function_exists("mssql_pconnect"))</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp;echo "PHP配置有误，不能调用Mssql函数库，请检查有关配置";</div><div>&nbsp; &nbsp; &nbsp; &nbsp;exit;</div><div>&nbsp; &nbsp; }</div><div></div><div>&nbsp; &nbsp; $C=@mssql_pconnect($MSSQL_OT_SERVER,$MSSQL_OT_USER,$MSSQL_OT_PASS);</div><div><span style="white-space:pre">	</span>//$C=@mssql_connect($MSSQL_OT_SERVER,$MSSQL_OT_USER,$MSSQL_OT_PASS);</div><div>&nbsp;}</div><div>&nbsp;else</div><div>&nbsp; &nbsp; $C=$otconnection;</div><div></div><div></div><div>&nbsp;$result=mssql_select_db($MSSQL_OT_DB,$C);</div><div>&nbsp;if(!$result)</div><div>&nbsp;{</div><div>&nbsp; &nbsp; PrintError("数据库 ".$MSSQL_OT_DB."不存在");</div><div>&nbsp; &nbsp; //exit;</div><div>&nbsp;}</div><div>&nbsp;return $C;</div><div>}</div><div></div><div>function exemsqlquery($C,$Q)</div><div>{</div><div></div><div>&nbsp;$cursor = mssql_query($Q,$C);</div><div>&nbsp;if(!$cursor)</div><div>&nbsp;{</div><div>&nbsp; &nbsp; PrintError("&lt;b&gt;SQL语句:&lt;/b&gt; ".$Q);</div><div>&nbsp; &nbsp; //exit;</div><div>&nbsp;}</div><div>&nbsp;return $cursor;</div><div>}<br /><br /></div></div><img src ="http://www.blogjava.net/gdufo/aggbug/396121.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/gdufo/" target="_blank">gdufo</a> 2013-03-06 11:04 <a href="http://www.blogjava.net/gdufo/archive/2013/03/06/396121.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>通达OA 增加外发邮件功能</title><link>http://www.blogjava.net/gdufo/archive/2013/03/06/396119.html</link><dc:creator>gdufo</dc:creator><author>gdufo</author><pubDate>Wed, 06 Mar 2013 02:53:00 GMT</pubDate><guid>http://www.blogjava.net/gdufo/archive/2013/03/06/396119.html</guid><description><![CDATA[<div><div><div>&nbsp; 在utility_all.php的690行增加</div></div>function send_webmail_ext($USER_STR, $CC_STR,$SUBJECT,$CONTENT)</div><div>{</div><div>&nbsp;&nbsp;</div><div>&nbsp; global $connection,$LOGIN_USER_ID,$LOGIN_USER_NAME,$RUN_ID;</div><div>&nbsp; $query = "SELECT * from WEBMAIL where USER_ID='admin'";</div><div>&nbsp; $cursor= exequery($connection,$query);</div><div>&nbsp; if($ROW=mysql_fetch_array($cursor))</div><div>&nbsp; {</div><div>&nbsp; &nbsp; &nbsp;$EMAIL=$ROW["EMAIL"];</div><div>&nbsp; &nbsp; &nbsp;$SMTP_SERVER=$ROW["SMTP_SERVER"];</div><div>&nbsp; &nbsp; &nbsp;$LOGIN_TYPE=$ROW["LOGIN_TYPE"];</div><div>&nbsp; &nbsp; &nbsp;$SMTP_PASS=$ROW["SMTP_PASS"];</div><div>&nbsp; &nbsp; &nbsp;$SMTP_PORT=$ROW["SMTP_PORT"];</div><div>&nbsp; &nbsp; &nbsp;$SMTP_SSL=$ROW["SMTP_SSL"]=="1" ? "ssl":"";</div><div>&nbsp; &nbsp; &nbsp;$EMAIL_PASS=$ROW["EMAIL_PASS"];</div><div>&nbsp; &nbsp; &nbsp;$EMAIL_PASS=decrypt_str($EMAIL_PASS,"webmail");</div><div></div><div>&nbsp; &nbsp; &nbsp;if($LOGIN_TYPE=="1")</div><div>&nbsp; &nbsp; &nbsp; &nbsp; $SMTP_USER = substr($EMAIL,0,strpos($EMAIL,"@")); // SMTP username</div><div>&nbsp; &nbsp; &nbsp;else</div><div>&nbsp; &nbsp; &nbsp; &nbsp; $SMTP_USER =$EMAIL;</div><div>&nbsp; &nbsp; &nbsp;if($SMTP_PASS=="yes")</div><div>&nbsp; &nbsp; &nbsp; &nbsp; $SMTP_PASS = $EMAIL_PASS; // SMTP password</div><div>&nbsp; &nbsp; &nbsp;else</div><div>&nbsp; &nbsp; &nbsp; &nbsp; $SMTP_PASS = "";</div><div></div><div>&nbsp; &nbsp; &nbsp;$USER_ARRAY=explode(",",$USER_STR);</div><div></div><div><span style="white-space:pre">	</span> //接收人</div><div>&nbsp; &nbsp; &nbsp;$query = "select USER_ID,EMAIL from USER WHERE find_in_set(USER_ID,'$USER_STR')";</div><div><span style="white-space:pre">	</span> echo $query;</div><div>&nbsp; &nbsp; &nbsp;$cursor = exequery($connection,$query);</div><div>&nbsp; &nbsp; &nbsp;while($ROW=mysql_fetch_array($cursor))</div><div>&nbsp; &nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp; &nbsp;$USER_ID=$ROW["USER_ID"];</div><div>&nbsp; &nbsp; &nbsp; &nbsp;/*if($USER_ID==$LOGIN_USER_ID)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; continue;*/</div><div>&nbsp; &nbsp; &nbsp; &nbsp;$TO_EMAIL=$ROW["EMAIL"];</div><div>&nbsp; &nbsp; &nbsp; &nbsp;/*if($TO_EMAIL=="")</div><div>&nbsp; &nbsp; &nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $query1 = "select EMAIL from WEBMAIL WHERE USER_ID='$USER_ID' limit 1";</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $cursor1 = exequery($connection,$query1);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if($ROW1=mysql_fetch_array($cursor))</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$TO_EMAIL=$ROW["EMAIL"];</div><div>&nbsp; &nbsp; &nbsp; &nbsp;}</div><div><span style="white-space:pre">	</span> &nbsp; if($TO_EMAIL != "") */</div><div>&nbsp; &nbsp; &nbsp; &nbsp;$TO_WEBMAIL.=$TO_EMAIL.",";</div><div>&nbsp; &nbsp; &nbsp;}</div><div>&nbsp; &nbsp; &nbsp;//抄送</div><div>&nbsp; &nbsp; &nbsp;$query = "select USER_ID,EMAIL from USER WHERE &nbsp;(EMAIL IS NOT NULL AND EMAIL&lt;&gt;'') AND find_in_set(USER_ID,'$CC_STR')";</div><div>&nbsp; &nbsp; &nbsp;$cursor = exequery($connection,$query);</div><div>&nbsp; &nbsp; &nbsp;while($ROW=mysql_fetch_array($cursor))</div><div>&nbsp; &nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp; &nbsp;$USER_ID=$ROW["USER_ID"];</div><div>&nbsp; &nbsp; &nbsp; &nbsp;/*if($USER_ID==$LOGIN_USER_ID)//本人</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; continue;*/</div><div>&nbsp; &nbsp; &nbsp; &nbsp;$CC_EMAIL=$ROW["EMAIL"];</div><div>&nbsp; &nbsp; &nbsp; &nbsp;/*if($TO_EMAIL=="")</div><div>&nbsp; &nbsp; &nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $query1 = "select EMAIL from WEBMAIL WHERE USER_ID='$USER_ID' limit 1";</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $cursor1 = exequery($connection,$query1);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if($ROW1=mysql_fetch_array($cursor))</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$TO_EMAIL=$ROW["EMAIL"];</div><div>&nbsp; &nbsp; &nbsp; &nbsp;}*/</div><div>&nbsp; &nbsp; &nbsp; &nbsp;$CC_WEBMAIL.=$CC_EMAIL.",";</div><div>&nbsp; &nbsp; &nbsp;}</div><div><span style="white-space:pre">		</span>&nbsp;</div><div>&nbsp; &nbsp; &nbsp;$result=send_mail($EMAIL,$TO_WEBMAIL,$SUBJECT,$CONTENT,$SMTP_SERVER,$SMTP_USER,$SMTP_PASS,true,$LOGIN_USER_NAME,'',$CC_WEBMAIL,'','',true,$SMTP_PORT,$SMTP_SSL);</div><div></div><div>&nbsp; &nbsp; &nbsp;if($result===true)</div><div>&nbsp; &nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Message("提示","外部邮件发送成功");</div><div>&nbsp; &nbsp; &nbsp;}</div><div>&nbsp; &nbsp; &nbsp;else</div><div>&nbsp; &nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Message("外部邮件发送失败",$result);</div><div>&nbsp; &nbsp; &nbsp;}</div><div>&nbsp; &nbsp;}</div><div>}</div><img src ="http://www.blogjava.net/gdufo/aggbug/396119.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/gdufo/" target="_blank">gdufo</a> 2013-03-06 10:53 <a href="http://www.blogjava.net/gdufo/archive/2013/03/06/396119.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>通达OA 修改查找员工控件的返回值的内容</title><link>http://www.blogjava.net/gdufo/archive/2013/03/06/396117.html</link><dc:creator>gdufo</dc:creator><author>gdufo</author><pubDate>Wed, 06 Mar 2013 02:48:00 GMT</pubDate><guid>http://www.blogjava.net/gdufo/archive/2013/03/06/396117.html</guid><description><![CDATA[<div>--工作流中表单控件中返回&#8220;工号_姓名&#8221;格式，目前只返回&#8220;姓名&#8221;。</div><div>1.在 selected.php中(webroot\module\user_select目录下)的12行"USERNAME"修改为</div><div>concat(USER_ID,'_',USER_NAME)USER_NAME</div><div>2.在 query.php中(webroot\module\user_select目录下)41行，修改同上</div><div>3.同理，将这个目录下所有查询 from USER中字段的 USERNAME修改同上。</div><div>4.修改这里会造成以下问题：</div><div>&nbsp; 如果流程走向是根据表单内容来选择的，比哪"A1974_徐进海"，就不会自动匹配人员&nbsp;</div><div>&nbsp; 要修改 condition.php 的657行加入以下(webroot\general\workflow\list\turn 目录下)&nbsp;</div><div>&nbsp;<span style="white-space:pre">	</span> &nbsp;$ITEM_DATA = preg_replace('/([x80-xff])/',"",$ITEM_DATA);//将非中文去掉 GBK模式下</div><div><span style="white-space:pre">	</span> &nbsp;$ITEM_DATA = str_replace("_","",$ITEM_DATA);</div><img src ="http://www.blogjava.net/gdufo/aggbug/396117.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/gdufo/" target="_blank">gdufo</a> 2013-03-06 10:48 <a href="http://www.blogjava.net/gdufo/archive/2013/03/06/396117.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>通达OA 增加超时邮件自动提醒功能</title><link>http://www.blogjava.net/gdufo/archive/2013/03/06/396116.html</link><dc:creator>gdufo</dc:creator><author>gdufo</author><pubDate>Wed, 06 Mar 2013 02:46:00 GMT</pubDate><guid>http://www.blogjava.net/gdufo/archive/2013/03/06/396116.html</guid><description><![CDATA[<div>--增加超时邮件自动提醒功能</div><div>要求：定时启动任务当发生超时将邮件发给任务启动者，任务主办者,主办者直属上司(部门负责人),HR相关人员</div><div>1.在user表中增加 EMP_MANAGECODE varchar(20)</div><div>2.修改user_edit.php(webroot\general\system\user目录下)，用以填写直属上司工号。</div><div>&nbsp; 修改update.php(webroot\general\system\user目录下)，用以保存直属上司工号。&nbsp;</div><div>3.增加workflow_timeout_remind.php(webroot\task\目录下)</div><div>4.以管理员进入&#8220;系统管理&#8221;，增加定时任务调度。</div><img src ="http://www.blogjava.net/gdufo/aggbug/396116.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/gdufo/" target="_blank">gdufo</a> 2013-03-06 10:46 <a href="http://www.blogjava.net/gdufo/archive/2013/03/06/396116.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>VSTO outlook视频教程</title><link>http://www.blogjava.net/gdufo/archive/2012/05/04/377393.html</link><dc:creator>gdufo</dc:creator><author>gdufo</author><pubDate>Fri, 04 May 2012 08:43:00 GMT</pubDate><guid>http://www.blogjava.net/gdufo/archive/2012/05/04/377393.html</guid><wfw:comment>http://www.blogjava.net/gdufo/comments/377393.html</wfw:comment><comments>http://www.blogjava.net/gdufo/archive/2012/05/04/377393.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/gdufo/comments/commentRss/377393.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/gdufo/services/trackbacks/377393.html</trackback:ping><description><![CDATA[<div><p><span style="text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed; font-size:12px; line-height:23px"><span style="color:royalblue"><a target="_blank" rel="nofollow" href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032328074&amp;Culture=zh-CN" style="line-height: 25px; text-decoration: none; color: #000000; font-family: Arial,Helvetica,simsun,u5b8bu4f53; font-size: 14px; text-align: left; background-color: #f6f6ed;">VSTO实战开发-Outlook  add-ins开发(5)</a></span></span><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span></p> <a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/E/7/1/E7154F46-D488-4AB9-A0F2-3A4279A6C8B9/WebCast20060724_Video.zip" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">下载课程</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/F/E/8/FE8E60F7-0B37-470D-96BF-B62C0DEB6D75/WebCast20060724_Video.wmv" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">WMV</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/0/3/7/037E3438-BFF6-4952-ACAA-F7F002BBAAB3/WebCast20060724_Video.mp4" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">MP4</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/2/1/9/21980C8A-C4E8-4251-B272-0D41A71536C2/WebCast20060724_Video.mp3" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">MP3</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/E/7/1/E7154F46-D488-4AB9-A0F2-3A4279A6C8B9/WebCast20060724_PDF.zip" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">PDF</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><br style="line-height:25px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed" /> <span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed"></span><br style="line-height:25px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed" /> <span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed"></span><br style="line-height:25px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed" /> <a target="_blank" rel="nofollow" href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032328073&amp;Culture=zh-CN" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">VSTO实战开发-Outlook  add-ins开发(4)</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><br style="line-height:25px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed" /> <a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/3/9/7/39749E25-2668-43C4-B8A1-05F9593C0AC7/WebCast20060717_Video.zip" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">下载课程</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/F/E/8/FE8E60F7-0B37-470D-96BF-B62C0DEB6D75/WebCast20060717_Video.wmv" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">WMV</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/0/3/7/037E3438-BFF6-4952-ACAA-F7F002BBAAB3/WebCast20060717_Video.mp4" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">MP4</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/2/1/9/21980C8A-C4E8-4251-B272-0D41A71536C2/WebCast20060717_Video.mp3" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">MP3</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/3/9/7/39749E25-2668-43C4-B8A1-05F9593C0AC7/WebCast20060717_Demo.zip" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">代码</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/3/9/7/39749E25-2668-43C4-B8A1-05F9593C0AC7/WebCast20060717_PDF.zip" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">PDF</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><br style="line-height:25px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed" /> <span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed"></span><br style="line-height:25px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed" /> <span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed"></span><br style="line-height:25px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed" /> <a target="_blank" rel="nofollow" href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032328238&amp;Culture=zh-CN" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">VSTO实战开发-Outlook  add-ins开发(3)</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><br style="line-height:25px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed" /> <a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/D/B/0/DB0231B2-99D7-42BF-BC49-F4ED2160D5EE/WebCast20060627pm_Video.zip" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">下载课程</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/F/E/8/FE8E60F7-0B37-470D-96BF-B62C0DEB6D75/WebCast20060627pm_Video.wmv" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">WMV</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/0/3/7/037E3438-BFF6-4952-ACAA-F7F002BBAAB3/WebCast20060627pm_Video.mp4" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">MP4</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/2/1/9/21980C8A-C4E8-4251-B272-0D41A71536C2/WebCast20060627pm_Video.mp3" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">MP3</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/D/B/0/DB0231B2-99D7-42BF-BC49-F4ED2160D5EE/WebCast20060627pm_Demo.zip" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">代码</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/D/B/0/DB0231B2-99D7-42BF-BC49-F4ED2160D5EE/WebCast20060627pm_PDF.zip" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">PDF</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/D/B/0/DB0231B2-99D7-42BF-BC49-F4ED2160D5EE/WebCast20060627pm_QA.zip" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">Q&amp;A</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><br style="line-height:25px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed" /> <span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed"></span><br style="line-height:25px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed" /> <span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed"></span><br style="line-height:25px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed" /> <a target="_blank" rel="nofollow" href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032328047&amp;Culture=zh-CN" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">VSTO实战开发-Outlook  add-ins开发(2)</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><br style="line-height:25px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed" /> <a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/9/4/B/94BA4AFA-7C7E-4008-AFE7-288358B6D30B/WebCast20060126_Video.zip" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">下载课程</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/F/E/8/FE8E60F7-0B37-470D-96BF-B62C0DEB6D75/WebCast20060126_Video.wmv" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">WMV</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/0/3/7/037E3438-BFF6-4952-ACAA-F7F002BBAAB3/WebCast20060126_Video.mp4" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">MP4</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/2/1/9/21980C8A-C4E8-4251-B272-0D41A71536C2/WebCast20060126_Video.mp3" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">MP3</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/2/0/d/20de6cf3-7861-40d5-bbb6-1ea5f049898a/WebCast20060126_Demo.zip" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">代码</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/7/1/0/710bc168-5f09-4580-80ae-1557f1cc14a0/WebCast20060126_PDF.zip" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">PDF</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/2/0/d/20de6cf3-7861-40d5-bbb6-1ea5f049898a/WebCast20060126_QA.zip" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">Q&amp;A</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><br style="line-height:25px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed" /> <span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed"></span><br style="line-height:25px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed" /> <span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed"></span><br style="line-height:25px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed" /> <a target="_blank" rel="nofollow" href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032328130&amp;Culture=zh-CN" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">VSTO实战开发-Outlook  add-ins开发(1)</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><br style="line-height:25px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed" /> <span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed"></span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/d/d/3/dd3a0167-1c60-4724-8de2-e5e1163bfee7/WebCast20060117pm_Video.zip" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">下载课程</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/F/E/8/FE8E60F7-0B37-470D-96BF-B62C0DEB6D75/WebCast20060117pm_Video.wmv" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">WMV</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/0/3/7/037E3438-BFF6-4952-ACAA-F7F002BBAAB3/WebCast20060117pm_Video.mp4" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">MP4</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/2/1/9/21980C8A-C4E8-4251-B272-0D41A71536C2/WebCast20060117pm_Video.mp3" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">MP3</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/d/d/3/dd3a0167-1c60-4724-8de2-e5e1163bfee7/WebCast20060117pm_Demo.zip" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">代码</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/7/1/0/710bc168-5f09-4580-80ae-1557f1cc14a0/WebCast20060117pm_PDF.zip" style="line-height:25px; text-decoration:none; color:#000000; font-family:Arial,Helvetica,simsun,u5b8bu4f53; font-size:14px; text-align:left; background-color:#f6f6ed"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">PDF</span></span></a><span style="font-size:12px; line-height:23px; color:#6e6e6e; font-family:Arial,Helvetica,simsun,u5b8bu4f53; text-align:left; background-color:#f6f6ed">&nbsp;</span><a target="_blank" rel="nofollow" href="http://download.microsoft.com/download/d/d/3/dd3a0167-1c60-4724-8de2-e5e1163bfee7/WebCast20060117pm_QA.zip" style="line-height: 25px; text-decoration: none; color: #000000; font-family: Arial,Helvetica,simsun,u5b8bu4f53; font-size: 14px; text-align: left; background-color: #f6f6ed;"><span style="font-size:12px; line-height:23px"><span style="color:royalblue">Q&amp;A</span></span></a><br /><br />参考资料:<br /><br /><div>http://technet.microsoft.com/zh-cn/ms269110.aspx<br /><br />http://www.c-sharpcorner.com/uploadfile/satisharveti/outlook-add-in-to-read-a-mail/<br /><br />http://msdn.microsoft.com/zh-cn/library/bb386094.aspx (MSDN)</div></div><img src ="http://www.blogjava.net/gdufo/aggbug/377393.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/gdufo/" target="_blank">gdufo</a> 2012-05-04 16:43 <a href="http://www.blogjava.net/gdufo/archive/2012/05/04/377393.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>InfoPath 与 数据库的通讯 </title><link>http://www.blogjava.net/gdufo/archive/2009/11/07/301537.html</link><dc:creator>gdufo</dc:creator><author>gdufo</author><pubDate>Sat, 07 Nov 2009 04:38:00 GMT</pubDate><guid>http://www.blogjava.net/gdufo/archive/2009/11/07/301537.html</guid><wfw:comment>http://www.blogjava.net/gdufo/comments/301537.html</wfw:comment><comments>http://www.blogjava.net/gdufo/archive/2009/11/07/301537.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/gdufo/comments/commentRss/301537.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/gdufo/services/trackbacks/301537.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: http://www.cnblogs.com/sumh/archive/2008/03/27/1123903.html一、在vs中创建表单模板把数据存到数据库中。新建infopath表单模板：打开vs2008，新建Project，在Project Types 区中选择 Visual C#&#224;Office-&#224;2007--&#224;InfoPathFormTempl...&nbsp;&nbsp;<a href='http://www.blogjava.net/gdufo/archive/2009/11/07/301537.html'>阅读全文</a><img src ="http://www.blogjava.net/gdufo/aggbug/301537.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/gdufo/" target="_blank">gdufo</a> 2009-11-07 12:38 <a href="http://www.blogjava.net/gdufo/archive/2009/11/07/301537.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>