<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[SImonJ07的记事本]]></title><description><![CDATA[Ask right questions when you want right answers]]></description><link>https://blog.csdn.net/SImonJ07</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; SImonJ07]]></copyright><item><title><![CDATA[css footer适应长短页面]]></title><link>https://blog.csdn.net/SImonJ07/article/details/6309447</link><guid>https://blog.csdn.net/SImonJ07/article/details/6309447</guid><author>SImonJ07</author><pubDate>Fri, 08 Apr 2011 14:03:00 +0800</pubDate><description><![CDATA[<br /><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<ti]]></description><category></category></item><item><title><![CDATA[VB mcisendstring 方法]]></title><link>https://blog.csdn.net/SImonJ07/article/details/5512093</link><guid>https://blog.csdn.net/SImonJ07/article/details/5512093</guid><author>SImonJ07</author><pubDate>Wed, 21 Apr 2010 16:30:00 +0800</pubDate><description><![CDATA[做个mp3播放器，用realplay和WMP做出来的程序内存占用太大。如果你仅仅是播放MP3，建议使用API函数mciSendString。Option ExplicitPrivate Declare Function mciSendString Lib "winmm.dll" Alias "mciSendStringA" (ByVal lpstrCommand As St]]></description><category></category></item><item><title><![CDATA[php printf()]]></title><link>https://blog.csdn.net/SImonJ07/article/details/4290614</link><guid>https://blog.csdn.net/SImonJ07/article/details/4290614</guid><author>SImonJ07</author><pubDate>Tue, 23 Jun 2009 09:32:00 +0800</pubDate><description><![CDATA[printf()函数是格式化输出函数, 一般用于向标准输出设备按规定格式输出信息。在编写程序时经常会用到此函数。函数的原型为：int printf(const char *format, ...);函数返回值为整型。若成功则返回输出的字符数，输出出错则返回负值。printf()函数的调用格式为:printf("", );其中格式化字符串包括两部分内容: 一部分是正常字符, 这些字符将按原样输出; ]]></description><category></category></item><item><title><![CDATA[javascript 事件]]></title><link>https://blog.csdn.net/SImonJ07/article/details/4263179</link><guid>https://blog.csdn.net/SImonJ07/article/details/4263179</guid><author>SImonJ07</author><pubDate>Fri, 12 Jun 2009 10:38:00 +0800</pubDate><description><![CDATA[一般事件事件        浏览器支持        描述onClick        IE3|N2|O        鼠标点击事件，多用在某个对象控制的范围内的鼠标点击onDblClick        IE4|N4|O        鼠标双击事件onMouseDown        IE4|N4|O        鼠标上的按钮被按下了onMouseUp        IE4]]></description><category></category></item><item><title><![CDATA[使用 CONVERT：]]></title><link>https://blog.csdn.net/SImonJ07/article/details/4157415</link><guid>https://blog.csdn.net/SImonJ07/article/details/4157415</guid><author>SImonJ07</author><pubDate>Thu, 07 May 2009 13:19:00 +0800</pubDate><description><![CDATA[使用 CONVERT：CONVERT (data_type[(length)], expression [, style]) Select CONVERT(varchar(100), GETDATE(), 0): 05 16 2006 10:57AM Select CONVERT(varchar(100), GETDATE(), 1): 05/16/06 Select CONVERT(]]></description><category></category></item><item><title><![CDATA[中国能养多少“士”？？]]></title><link>https://blog.csdn.net/SImonJ07/article/details/4106276</link><guid>https://blog.csdn.net/SImonJ07/article/details/4106276</guid><author>SImonJ07</author><pubDate>Fri, 24 Apr 2009 11:18:00 +0800</pubDate><description><![CDATA[现在的大学采取量化管理，规定老师们从讲师升为副教授，要发多少篇论文，从副教授升为教授，又要发多少论文。在这样的制度下，大学里的老师变成了母鸡，根本没有心思好好做学问，好好带学生，光忙着生蛋发论文了。 他们让我再生些‘创新型’的蛋！我回答他们：滚你妈的蛋！ 大学应该有更宽松的环境让老师把更多心思放在如何培养学生上，至于‘下蛋’，有蛋则生，无蛋则养。孟尝君还养士三千呢。 ---]]></description><category></category></item><item><title><![CDATA[查询表信息]]></title><link>https://blog.csdn.net/SImonJ07/article/details/3896216</link><guid>https://blog.csdn.net/SImonJ07/article/details/3896216</guid><author>SImonJ07</author><pubDate>Mon, 16 Feb 2009 14:59:00 +0800</pubDate><description><![CDATA[--参考:     SELECT       表名=case   when   a.colorder=1   then   d.name   else      end,     表说明=case   when   a.colorder=1   then   isnull(f.value,)   else      end,     字段序号=a.colorder,     字段名=a]]></description><category></category></item><item><title><![CDATA[获取数据库表名和字段 ]]></title><link>https://blog.csdn.net/SImonJ07/article/details/3895897</link><guid>https://blog.csdn.net/SImonJ07/article/details/3895897</guid><author>SImonJ07</author><pubDate>Mon, 16 Feb 2009 13:55:00 +0800</pubDate><description><![CDATA[ --读取库中的所有表名 select name from sysobjects where xtype=u --读取指定表的所有列名 select name from syscolumns where id=(select max(id) from sysobjects where xtype=u and name=表名)获取数据库表名和字段s]]></description><category></category></item><item><title><![CDATA[链接：在路上 by 咬人]]></title><link>https://blog.csdn.net/SImonJ07/article/details/3894804</link><guid>https://blog.csdn.net/SImonJ07/article/details/3894804</guid><author>SImonJ07</author><pubDate>Mon, 16 Feb 2009 08:46:00 +0800</pubDate><description><![CDATA[在路上]]></description><category></category></item><item><title><![CDATA[在VB中实现移动没有标题栏的窗口]]></title><link>https://blog.csdn.net/SImonJ07/article/details/3326211</link><guid>https://blog.csdn.net/SImonJ07/article/details/3326211</guid><author>SImonJ07</author><pubDate>Tue, 18 Nov 2008 15:00:00 +0800</pubDate><description><![CDATA[通过消息的发送实现移动无标题窗体。当鼠标按下、移动或释放时，将鼠标在窗体上按下的消息(消息值为HTCAPTION)发出，就可以拖动窗体了。代码如下： 　　 Private Declare Function ReleaseCapture Lib "user32" () As Long 　　 Private Declare Function SendMessage Lib "u]]></description><category></category></item><item><title><![CDATA[vb 隱藏屬性]]></title><link>https://blog.csdn.net/SImonJ07/article/details/3199696</link><guid>https://blog.csdn.net/SImonJ07/article/details/3199696</guid><author>SImonJ07</author><pubDate>Sat, 01 Nov 2008 09:14:00 +0800</pubDate><description><![CDATA[control.font.charset         = 134(CHINESE_GB2312)            128(Japanese)]]></description><category></category></item><item><title><![CDATA[VB 关闭其它窗口]]></title><link>https://blog.csdn.net/SImonJ07/article/details/3131853</link><guid>https://blog.csdn.net/SImonJ07/article/details/3131853</guid><author>SImonJ07</author><pubDate>Thu, 23 Oct 2008 17:14:00 +0800</pubDate><description><![CDATA[Option ExplicitPrivate Sub Toolbar1_ButtonClick(ByVal Button As MSComctlLib.Button)Dim f1 As FormSelect Case Button.IndexCase 1    Set f1 = New Form1    Form1.Show     unloadothe]]></description><category></category></item><item><title><![CDATA[VB6.0 自動生成 get let方法的工具]]></title><link>https://blog.csdn.net/SImonJ07/article/details/2985584</link><guid>https://blog.csdn.net/SImonJ07/article/details/2985584</guid><author>SImonJ07</author><pubDate>Sat, 27 Sep 2008 08:50:00 +0800</pubDate><description><![CDATA[ Option ExplicitDim s As StringPrivate Sub Command1_Click()CD.Filter = "TXT|*.txt"CD.ShowOpenText1 = CD.FileNameEnd SubPrivate Sub Command2_Click()Dim temp As String, b() As St]]></description><category></category></item><item><title><![CDATA[保存圖片]]></title><link>https://blog.csdn.net/SImonJ07/article/details/2907346</link><guid>https://blog.csdn.net/SImonJ07/article/details/2907346</guid><author>SImonJ07</author><pubDate>Wed, 10 Sep 2008 09:20:00 +0800</pubDate><description><![CDATA[]]></description><category></category></item><item><title><![CDATA[MoveComplete   WillMove  vb6]]></title><link>https://blog.csdn.net/SImonJ07/article/details/2846522</link><guid>https://blog.csdn.net/SImonJ07/article/details/2846522</guid><author>SImonJ07</author><pubDate>Fri, 29 Aug 2008 09:26:00 +0800</pubDate><description><![CDATA[adodc  recordset  Procedure declaration does not match description of event or procedure having same name 報這個錯了么 ？  引用Microsoft ActiveX Data Objects 2.0 Library就好了 2.1以上都不好用]]></description><category></category></item><item><title><![CDATA[Delphi ： Application.MessageBox]]></title><link>https://blog.csdn.net/SImonJ07/article/details/2708141</link><guid>https://blog.csdn.net/SImonJ07/article/details/2708141</guid><author>SImonJ07</author><pubDate>Fri, 25 Jul 2008 09:47:00 +0800</pubDate><description><![CDATA[Application.MessageBox 是 TApplication 的成员函数，宣告如下：function TApplication.MessageBox(const Text, Caption: PChar; Flags: Longint): Integer;自变量：  1. Text：要显示的讯息  2. Caption：讯息窗口的标题列文字  3. Flags：讯息旗标     ]]></description><category></category></item><item><title><![CDATA[vb 进程控制 查询 关闭]]></title><link>https://blog.csdn.net/SImonJ07/article/details/2661611</link><guid>https://blog.csdn.net/SImonJ07/article/details/2661611</guid><author>SImonJ07</author><pubDate>Wed, 16 Jul 2008 16:34:00 +0800</pubDate><description><![CDATA[Option ExplicitPublic Const sEndProess       As String = "excel.exe"         &apos;注意必须小写Public Declare Function CreateToolhelp32Snapshot Lib "kernel32 " (ByVal dwFlags As Long, ByVal th32ProcessI]]></description><category></category></item><item><title><![CDATA[吃辣椒？]]></title><link>https://blog.csdn.net/SImonJ07/article/details/2623954</link><guid>https://blog.csdn.net/SImonJ07/article/details/2623954</guid><author>SImonJ07</author><pubDate>Tue, 08 Jul 2008 11:17:00 +0800</pubDate><description><![CDATA[辣椒瘦身辣椒，那个让你又爱又恨的家伙，让你啧啧出汗却欲罢不能，它玲珑的身体里包裹着一团燃烧的烈火，是蔬菜中最有激情和热情的角色，现在，调皮的它又多了一个你无法拒绝的理由：燃烧脂肪，修身塑体！ 脂肪何以被燃烧 1、辣椒燃烧脂肪的奥秘是什么？关键在于——辣椒碱，只须吃上一两勺，它的刺激口味即刻会向脑神经发出“足够”讯号，导致食欲大减。同时辣椒碱的另一大作用是刺激体内生热系统，加快新陈代]]></description><category></category></item><item><title><![CDATA[大男人小女孩]]></title><link>https://blog.csdn.net/SImonJ07/article/details/2599328</link><guid>https://blog.csdn.net/SImonJ07/article/details/2599328</guid><author>SImonJ07</author><pubDate>Mon, 30 Jun 2008 19:48:00 +0800</pubDate><description><![CDATA[林俊杰 - 大男人小女孩☆专辑:西界不是我的错 我们都听过完美的时候 要更多找这时候说的太多有时候的我只想和你一样沉默不想单单罗罗嗦嗦水也灭不掉的火也许大男人真的很男人少了点风度 还是不承认有时候错的并不知道错的不想借口只是直接一天说有时候女孩没那么小孩心里的无奈也需要点关怀遗憾的遗留变成勉强了怎么能重新再来不是我的错 我]]></description><category></category></item><item><title><![CDATA[Delphi Format方法说明]]></title><link>https://blog.csdn.net/SImonJ07/article/details/2591836</link><guid>https://blog.csdn.net/SImonJ07/article/details/2591836</guid><author>SImonJ07</author><pubDate>Fri, 27 Jun 2008 14:30:00 +0800</pubDate><description><![CDATA[function Format(const Format: string; const Args: array of const): string; overload; ormat方法有两个种形式，另外一种是三个参数的，主要区别在于它是线程安全的，但并不多用。Format参数是一个格式字符串，用于格式化Args里面的值的。 Args是一个变体数组，表示用以输出的各个常量或变量。如以下例子：]]></description><category></category></item></channel></rss>