<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Run for your life</title>
	<atom:link href="http://gentirit.com/feed" rel="self" type="application/rss+xml" />
	<link>http://gentirit.com</link>
	<description></description>
	<pubDate>Tue, 01 Jun 2010 03:10:33 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Create INI file with VFP</title>
		<link>http://gentirit.com/create-ini-file-with-vfp.html</link>
		<comments>http://gentirit.com/create-ini-file-with-vfp.html#comments</comments>
		<pubDate>Tue, 01 Jun 2010 03:10:33 +0000</pubDate>
		<dc:creator>yuno</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Tips &amp; Trick]]></category>

		<category><![CDATA[visual foxpro]]></category>

		<guid isPermaLink="false">http://gentirit.com/?p=400</guid>
		<description><![CDATA[Do CreateINI
Local cFile
cFile = &#8220;c:\sampleini.ini&#8221;
=MakeFile(cFile)
= WritePrivateProfileSection (&#8221;One&#8221;,;
&#8220;ID=001&#8243; + Chr(0) +&#8221;Path = c:&#8221;+CHR(0) ,;
cFile)
= WritePrivateProfileSection (&#8221;Two&#8221;,;
&#8220;ID=002&#8243; + Chr(0) +&#8221;Path = d:&#8221;+CHR(0) ,;
cFile)
= WritePrivateProfileSection (&#8221;Three&#8221;,;
&#8220;ID=003&#8243; + Chr(0) +&#8221;Path = e:&#8221;+CHR(0) ,;
cFile)
PROCEDURE  MakeFile (cFile)
IF FILE (cFile)
DELETE FILE (cFile)
ENDIF
hFile = FCREATE (cFile)
= FCLOSE (hFile)
PROCEDURE  CreateINI
DECLARE WritePrivateProfileSection IN kernel32;
STRING lpAppName,;
STRING lpString,;
STRING lpFileName
DECLARE WritePrivateProfileString IN kernel32;
STRING lpAppName,;
STRING lpKeyName,;
STRING lpString,;
STRING lpFileName
enjoy it&#8230;!
source


Related [...]


Related posts:<ol><li><a href='http://gentirit.com/reduce-memory-usage-in-vfp.html' rel='bookmark' title='Permanent Link: Reduce Memory Usage in VFP'>Reduce Memory Usage in VFP</a></li><li><a href='http://gentirit.com/how-to-visual-foxpro-and-oo-calc.html' rel='bookmark' title='Permanent Link: How to : Visual Foxpro | OO Calc'>How to : Visual Foxpro | OO Calc</a></li><li><a href='http://gentirit.com/how-to-get-current-user-winntxpy2k-in-vfp.html' rel='bookmark' title='Permanent Link: How to: Get current user (WinNT/XP/Y2K) in VFP'>How to: Get current user (WinNT/XP/Y2K) in VFP</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Do CreateINI</p>
<p>Local cFile<br />
cFile = &#8220;c:\sampleini.ini&#8221;<br />
=MakeFile(cFile)</p>
<p>= WritePrivateProfileSection (&#8221;One&#8221;,;<br />
&#8220;ID=001&#8243; + Chr(0) +&#8221;Path = c:&#8221;+CHR(0) ,;<br />
cFile)<br />
= WritePrivateProfileSection (&#8221;Two&#8221;,;<br />
&#8220;ID=002&#8243; + Chr(0) +&#8221;Path = d:&#8221;+CHR(0) ,;<br />
cFile)<br />
= WritePrivateProfileSection (&#8221;Three&#8221;,;<br />
&#8220;ID=003&#8243; + Chr(0) +&#8221;Path = e:&#8221;+CHR(0) ,;<br />
cFile)</p>
<p>PROCEDURE  MakeFile (cFile)<br />
IF FILE (cFile)<br />
DELETE FILE (cFile)<br />
ENDIF</p>
<p>hFile = FCREATE (cFile)<br />
= FCLOSE (hFile)</p>
<p>PROCEDURE  CreateINI<br />
DECLARE WritePrivateProfileSection IN kernel32;<br />
STRING lpAppName,;<br />
STRING lpString,;<br />
STRING lpFileName</p>
<p>DECLARE WritePrivateProfileString IN kernel32;<br />
STRING lpAppName,;<br />
STRING lpKeyName,;<br />
STRING lpString,;<br />
STRING lpFileName</p>
<p><em>enjoy it&#8230;!<br />
<a href="http://www.news2news.com/" target="_blank">source</a></em></p>


<p>Related posts:<ol><li><a href='http://gentirit.com/reduce-memory-usage-in-vfp.html' rel='bookmark' title='Permanent Link: Reduce Memory Usage in VFP'>Reduce Memory Usage in VFP</a></li><li><a href='http://gentirit.com/how-to-visual-foxpro-and-oo-calc.html' rel='bookmark' title='Permanent Link: How to : Visual Foxpro | OO Calc'>How to : Visual Foxpro | OO Calc</a></li><li><a href='http://gentirit.com/how-to-get-current-user-winntxpy2k-in-vfp.html' rel='bookmark' title='Permanent Link: How to: Get current user (WinNT/XP/Y2K) in VFP'>How to: Get current user (WinNT/XP/Y2K) in VFP</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://gentirit.com/create-ini-file-with-vfp.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Membangun SMS Gateway dengan Gammu dan Visual Foxpro</title>
		<link>http://gentirit.com/membangun-sms-gateway-dengan-gammu-dan-visual-foxpro.html</link>
		<comments>http://gentirit.com/membangun-sms-gateway-dengan-gammu-dan-visual-foxpro.html#comments</comments>
		<pubDate>Tue, 18 May 2010 04:52:54 +0000</pubDate>
		<dc:creator>yuno</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[gammu]]></category>

		<category><![CDATA[gateway]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[sms]]></category>

		<category><![CDATA[visual foxpro]]></category>

		<guid isPermaLink="false">http://gentirit.com/?p=385</guid>
		<description><![CDATA[  
Gammu adalah semacam service yang bisa digunakan sebagai SMS Gateway. Kelebihan gammu antara lain multi platform (Linux,Windows) dan aplikasi SMS Gateway bisa dibangun dari berbagai bahasa program seperti PHP, Java, VFP, Delphi,VB dll. Seperti judul diatas, tentu saja disini saya menggunakan VFP (Visual Foxpro) sebagai interface aplikasi SMS Gateway. J

Step 1
Download file gammu [...]


Related posts:<ol><li><a href='http://gentirit.com/running-program-clipper-dengan-dosemu-debian.html' rel='bookmark' title='Permanent Link: Running Program Clipper dengan Dosemu - Debian'>Running Program Clipper dengan Dosemu - Debian</a></li><li><a href='http://gentirit.com/visual-foxpro-dos-and-donts.html' rel='bookmark' title='Permanent Link: Visual Foxpro : Do&#8217;s and Dont&#8217;s'>Visual Foxpro : Do&#8217;s and Dont&#8217;s</a></li><li><a href='http://gentirit.com/connection-strings-for-access-with-visual-foxpro.html' rel='bookmark' title='Permanent Link: Connection strings for Access with visual foxpro'>Connection strings for Access with visual foxpro</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><!--[if gte mso 9]><xml> <w :WordDocument> </w><w :View>Normal</w> <w :Zoom>0</w> <w :TrackMoves /> <w :TrackFormatting /> <w :PunctuationKerning /> <w :ValidateAgainstSchemas /> <w :SaveIfXMLInvalid>false</w> <w :IgnoreMixedContent>false</w> <w :AlwaysShowPlaceholderText>false</w> <w :DoNotPromoteQF /> <w :LidThemeOther>EN-US</w> <w :LidThemeAsian>X-NONE</w> <w :LidThemeComplexScript>X-NONE</w> <w :Compatibility> <w :BreakWrappedTables /> <w :SnapToGridInCell /> <w :WrapTextWithPunct /> <w :UseAsianBreakRules /> <w :DontGrowAutofit /> <w :SplitPgBreakAndParaMark /> <w :DontVertAlignCellWithSp /> <w :DontBreakConstrainedForcedTables /> <w :DontVertAlignInTxbx /> <w :Word11KerningPairs /> <w :CachedColBalance /> </w> <w :BrowserLevel>MicrosoftInternetExplorer4</w> <m :mathPr> <m :mathFont m:val="Cambria Math" /> <m :brkBin m:val="before" /> <m :brkBinSub m:val=" " /> <m :smallFrac m:val="off" /> <m :dispDef /> <m :lMargin m:val="0" /> <m :rMargin m:val="0" /> <m :defJc m:val="centerGroup" /> <m :wrapIndent m:val="1440" /> <m :intLim m:val="subSup" /> <m :naryLim m:val="undOvr" /> </m> </xml>< ![endif]--><!--[if gte mso 9]><xml> <w :LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w :LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w :LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w :LsdException Locked="false" Priority="39" Name="toc 1" /> <w :LsdException Locked="false" Priority="39" Name="toc 2" /> <w :LsdException Locked="false" Priority="39" Name="toc 3" /> <w :LsdException Locked="false" Priority="39" Name="toc 4" /> <w :LsdException Locked="false" Priority="39" Name="toc 5" /> <w :LsdException Locked="false" Priority="39" Name="toc 6" /> <w :LsdException Locked="false" Priority="39" Name="toc 7" /> <w :LsdException Locked="false" Priority="39" Name="toc 8" /> <w :LsdException Locked="false" Priority="39" Name="toc 9" /> <w :LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w :LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w :LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w :LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w :LsdException Locked="false" Priority="0" Name="Hyperlink" /> <w :LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w :LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w :LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w :LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w :LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w :LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w :LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w :LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w :LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w :LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w :LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w :LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w :LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w :LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w :LsdException Locked="false" Priority="37" Name="Bibliography" /> <w :LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w> </xml>< ![endif]--><!--[if !mso]><span class="mceItemObject"   classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></span> <mce :style>< !  st1\:*{behavior:url(#ieooui) } --> <!--[endif]--><!--  /* Font Definitions */  @font-face 	{font-family:Wingdings; 	panose-1:5 0 0 0 0 0 0 0 0 0; 	mso-font-charset:2; 	mso-generic-font-family:auto; 	mso-font-pitch:variable; 	mso-font-signature:0 268435456 0 0 -2147483648 0;} @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:1; 	mso-generic-font-family:roman; 	mso-font-format:other; 	mso-font-pitch:variable; 	mso-font-signature:0 0 0 0 0 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman","serif"; 	mso-fareast-font-family:"Times New Roman";} a:link, span.MsoHyperlink 	{mso-style-unhide:no; 	color:blue; 	text-decoration:underline; 	text-underline:single;} a:visited, span.MsoHyperlinkFollowed 	{mso-style-noshow:yes; 	mso-style-priority:99; 	color:purple; 	mso-themecolor:followedhyperlink; 	text-decoration:underline; 	text-underline:single;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	font-size:10.0pt; 	mso-ansi-font-size:10.0pt; 	mso-bidi-font-size:10.0pt;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.25in 1.0in 1.25in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --><!--[if gte mso 10]> </mce><mce :style>< !   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin:0in; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} --> <!--[endif]--></p>
<p class="MsoNormal">Gammu adalah semacam service yang bisa digunakan sebagai SMS Gateway. Kelebihan gammu antara lain multi platform (Linux,Windows) dan aplikasi SMS Gateway bisa dibangun dari berbagai bahasa program seperti PHP, Java, VFP, Delphi,VB dll. Seperti judul diatas, tentu saja disini saya menggunakan VFP (Visual Foxpro) sebagai interface aplikasi SMS Gateway. <span style="font-family: Wingdings;"><span>J</span></span></p>
<p class="MsoNormal">
<p class="MsoNormal">Step 1</p>
<p class="MsoNormal">Download file gammu for windows <a href="http://www.gammu.org/">disini</a>.<span> </span>(saya menggunakan versi 1.09.00)</p>
<p class="MsoNormal">
<p class="MsoNormal">Step 2</p>
<p class="MsoNormal">Ekstrak file gammu di sebuah folder Anda, misalnya c:\gammu</p>
<p class="MsoNormal">
<p class="MsoNormal">Step 3</p>
<p class="MsoNormal">Setting konfigurasi Gammu dengan mengedit file <strong>gammurc</strong> :</p>
<p class="MsoNormal">
<p class="MsoNormal">[gammu]</p>
<p class="MsoNormal">port =<span> </span></p>
<p class="MsoNormal">(<em>isi sesuai port yang dikenali HP saat terhubung dengan computer dan akhiri dengan tanda :</em>)</p>
<p class="MsoNormal">connection =</p>
<p class="MsoNormal">Jenis koneksi HP. Selengkapnya bisa dilihat <a href="http://www.gammu.org/wiki/index.php?title=Gammu:Connecting_to_phone">disini</a></p>
<p class="MsoNormal">
<p class="MsoNormal">Contoh konfigurasi saya dengan menggunakan HP Sony Erricson W200i</p>
<p class="MsoNormal">
<p class="MsoNormal"><em>[gammu]</em></p>
<p class="MsoNormal"><em>Port = com14:</em></p>
<p class="MsoNormal"><em>Connection = AT115200</em></p>
<p class="MsoNormal">
<p class="MsoNormal">Tes koneksi dengan mengetik command dos prompt :</p>
<p class="MsoNormal">Gammu –identify</p>
<p class="MsoNormal">
<p class="MsoNormal">Jika berhasil akan muncul seperti ini:</p>
<p class="MsoNormal">
<p class="MsoNormal">Manufacturer<span> </span>: Sony Ericsson</p>
<p class="MsoNormal">Model<span> </span>: unknown (AAB-1022044-BV)</p>
<p class="MsoNormal">Firmware <span> </span>: R4JA011</p>
<p class="MsoNormal">IMEI<span> </span>: 359703216549870</p>
<p class="MsoNormal">SIM IMSI<span> </span>: 510132165498701</p>
<p class="MsoNormal">
<p class="MsoNormal">Step 4</p>
<p class="MsoNormal">Setting konfigurasi SMS Daemon.</p>
<p class="MsoNormal">Ubah file <strong>smsdrc</strong> pada bagian :</p>
<p class="MsoNormal">
<p class="MsoNormal">[gammu]</p>
<p class="MsoNormal">Port =<span> </span>diisi sesuai dengan port pada file <strong>gammurc</strong><span> </span></p>
<p class="MsoNormal">
<p class="MsoNormal">[smsd]</p>
<p class="MsoNormal">PIN = <span> </span>isi nomor PIN kartu jika Sim Card memelukan nomor PIN</p>
<p class="MsoNormal">
<p class="MsoNormal">&#8211; setting for –smsd MYSQL&#8212;-</p>
<p class="MsoNormal">
<p class="MsoNormal">User = <span> </span>root</p>
<p class="MsoNormal">Password = passwordroot</p>
<p class="MsoNormal">Pc = localhost</p>
<p class="MsoNormal">Database = smsd</p>
<p class="MsoNormal">
<p class="MsoNormal">
<p class="MsoNormal">Step 5</p>
<p class="MsoNormal">Membuat database <strong>smsd</strong>. File dump (ber-extension .sql) untuk membuat table-table sudah disediakan gammu dan bisa dijalankan menggunakan phpmyadmin ataupun tools mysql lain.</p>
<p class="MsoNormal">
<p class="MsoNormal">Step 6</p>
<p class="MsoNormal">Menjalankan Gammu sebagai service. Ketik di dos prompt:</p>
<p class="MsoNormal">
<p class="MsoNormal"><strong>Gammu –-smsd MYSQL smsdrc</strong></p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal">Jika berhasil akan muncul di dos prompt :</p>
<p class="MsoNormal"><strong>Press Ctrl+C to stop the program………</strong></p>
<p class="MsoNormal">
<p class="MsoNormal">&#8211; bersambung&#8211;</p>
<p></mce></p>


<p>Related posts:<ol><li><a href='http://gentirit.com/running-program-clipper-dengan-dosemu-debian.html' rel='bookmark' title='Permanent Link: Running Program Clipper dengan Dosemu - Debian'>Running Program Clipper dengan Dosemu - Debian</a></li><li><a href='http://gentirit.com/visual-foxpro-dos-and-donts.html' rel='bookmark' title='Permanent Link: Visual Foxpro : Do&#8217;s and Dont&#8217;s'>Visual Foxpro : Do&#8217;s and Dont&#8217;s</a></li><li><a href='http://gentirit.com/connection-strings-for-access-with-visual-foxpro.html' rel='bookmark' title='Permanent Link: Connection strings for Access with visual foxpro'>Connection strings for Access with visual foxpro</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://gentirit.com/membangun-sms-gateway-dengan-gammu-dan-visual-foxpro.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Paid To Click</title>
		<link>http://gentirit.com/paid-to-click.html</link>
		<comments>http://gentirit.com/paid-to-click.html#comments</comments>
		<pubDate>Thu, 29 Apr 2010 01:44:58 +0000</pubDate>
		<dc:creator>yuno</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Tips &amp; Trick]]></category>

		<category><![CDATA[Bisnis internet]]></category>

		<category><![CDATA[PTC]]></category>

		<guid isPermaLink="false">http://gentirit.com/?p=380</guid>
		<description><![CDATA[Salah satu bisnis di internet yang kian marak adalah Paid To click atau lebih sering disebut PTC. PTC ini adalah salah program dimana member harus men-klik iklan yang disajikan untuk bisa mendapat penghasilan.  Di PTC lokal akan membayar penghasilan rupiah kita melalui transfer bank, sedangkan PTC luar negeri akan membayar dollar melalui Paypal atau Alertpay. [...]


Related posts:<ol><li><a href='http://gentirit.com/youtube-dl-windows-linux.html' rel='bookmark' title='Permanent Link: Youtube-dl - Download video youtube di Windows &#038; Linux'>Youtube-dl - Download video youtube di Windows &#038; Linux</a></li><li><a href='http://gentirit.com/ptkp-tahun-2009-%e2%80%93-uu-362008.html' rel='bookmark' title='Permanent Link: PTKP TAHUN 2009 – UU 36/2008'>PTKP TAHUN 2009 – UU 36/2008</a></li><li><a href='http://gentirit.com/tragedi.html' rel='bookmark' title='Permanent Link: Tragedi'>Tragedi</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Salah satu bisnis di internet yang kian marak adalah <strong>Paid To click</strong> atau lebih sering disebut PTC. PTC ini adalah salah program dimana member harus men-klik iklan yang disajikan untuk bisa mendapat penghasilan.  Di PTC lokal akan membayar penghasilan rupiah kita melalui transfer bank, sedangkan PTC luar negeri akan membayar dollar melalui <a href="http://www.paypal.com" target="_blank">Paypal</a> atau <a href="https://www.alertpay.com/" target="_blank">Alertpay</a>. Untuk bisa jadi member PTC-PTC ini tidak dipungut biaya alias gratis loh!&#8230;  Untuk lengkapnya silahkan berkunjung dan bergabung ke PTC-PTC yang ada di daftar berikut ini :</p>
<p><span style="font-weight: bold;">Lokal</span> :</p>
<ol>
<li><a href="http://www.idr-clickit.com/register.php/fauliya.html">IDR-Clickit</a></li>
<li><a href="http://www.dbclix.com/index.php?refid=fauliya">DBClix</a></li>
<li><a href="http://klikajadeh.com/?r=fauliya">klikajadeh</a></li>
<li><a href="http://klikptc.com/?r=fauliya">klikptc</a></li>
<li><a href="http://duitbux.com/?r=fauliya">duitbux</a></li>
<li><a href="https://www.klikrupiah.com/index.php?ref=fauliya">klikrupiah</a></li>
</ol>
<p><span style="font-weight: bold;">Luar negeri :</span></p>
<ol>
<li><a href="http://www.fineptc.com/index.php?ref=fauliya">FinePTC</a></li>
<li><a href="http://www.paidonlinebux.com/?ref=fauliya">PaidOnlineBux</a></li>
<li><a href="http://warpbux.com/index.php?ref=fauliya">warpbux</a></li>
<li><a href="http://gagabux.com/register.php/fauliya.html">gagabux</a></li>
<li><a href="http://www.neobux.com/?r=fauliya">neobux</a></li>
<li><a href="http://www.newbuxindia.com/?ref=fauliya">newbuxindia</a></li>
<li><a href="http://www.grandptc.com/index.php?ref=fauliya">grandptc</a></li>
<li><a href="http://www.dollargpt.com/?ref=fauliya">dollargpt</a></li>
<li><a href="http://www.omnibux.com/?r=fauliya">omnibux</a></li>
<li><a href="http://wordlinx.com/?r=263010">wordlinx</a></li>
<li><a href="http://www.paidtoclickbux.com/?ref=fauliya">paidtoclickbux</a></li>
<li><a href="http://www.incentria.com/index.php?ref=fauliya">incentria</a></li>
<li><a href="http://www.clicksia.com/index.php?ref=fauliya">clicksia</a></li>
<li><a href="http://adptc.com/?r=fauliya">adptc</a></li>
<li><a href="http://www.linkgrand.com/?r=224264">linkgrand</a></li>
<li><a href="http://www.tviptc.com/?ref=fauliya">tviptc</a></li>
<li><a href="https://incrasebux.com/register.php/fauliya.html">incrasebux</a></li>
<li><a href="https://www.palmbux.com/register.php?r=fauliya">palmbux</a></li>
<li><a href="http://www.indoclix.com/index.php?ref=fauliya">indoclix</a></li>
</ol>
<p>Selamat  berburu rupiah dan dollar&#8230;.semoga bermanfaat</p>


<p>Related posts:<ol><li><a href='http://gentirit.com/youtube-dl-windows-linux.html' rel='bookmark' title='Permanent Link: Youtube-dl - Download video youtube di Windows &#038; Linux'>Youtube-dl - Download video youtube di Windows &#038; Linux</a></li><li><a href='http://gentirit.com/ptkp-tahun-2009-%e2%80%93-uu-362008.html' rel='bookmark' title='Permanent Link: PTKP TAHUN 2009 – UU 36/2008'>PTKP TAHUN 2009 – UU 36/2008</a></li><li><a href='http://gentirit.com/tragedi.html' rel='bookmark' title='Permanent Link: Tragedi'>Tragedi</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://gentirit.com/paid-to-click.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>enable login root password in phpmyadmin</title>
		<link>http://gentirit.com/enable-login-root-password-in-phpmyadmin.html</link>
		<comments>http://gentirit.com/enable-login-root-password-in-phpmyadmin.html#comments</comments>
		<pubDate>Wed, 07 Apr 2010 16:55:43 +0000</pubDate>
		<dc:creator>yuno</dc:creator>
		
		<category><![CDATA[Tips &amp; Trick]]></category>

		<category><![CDATA[MySql]]></category>

		<category><![CDATA[phpmyadmin]]></category>

		<guid isPermaLink="false">http://gentirit.com/?p=377</guid>
		<description><![CDATA[By default, there&#8217;s no need root password when open phpmyadmin on web browser.  But if we give a root password  to access mysql and want to open phpmyadmin, we need to change config.inc.php in phpmyadmin directory.
/* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = &#8216;config&#8217;;
$cfg['Servers'][$i]['user'] = &#8221;;
$cfg['Servers'][$i]['password'] = &#8221;;
$cfg['Servers'][$i]['extension'] = &#8216;mysql&#8217;;
Replace config with cookie
/* Authentication type and [...]


Related posts:<ol><li><a href='http://gentirit.com/clear-cmos.html' rel='bookmark' title='Permanent Link: Clear CMOS'>Clear CMOS</a></li><li><a href='http://gentirit.com/enabled-root-login-to-gnome.html' rel='bookmark' title='Permanent Link: enabled root login to gnome'>enabled root login to gnome</a></li><li><a href='http://gentirit.com/data-connection.html' rel='bookmark' title='Permanent Link: Data Connection'>Data Connection</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>By default, there&#8217;s no need root password when open phpmyadmin on web browser.  But if we give a root password  to access mysql and want to open phpmyadmin, we need to change <strong><em>config.inc.php</em></strong> in phpmyadmin directory.</p>
<p><span style="color: #0000ff;">/* Authentication type and info */<br />
<strong>$cfg['Servers'][$i]['auth_type'] = &#8216;config&#8217;;</strong><br />
$cfg['Servers'][$i]['user'] = &#8221;;<br />
$cfg['Servers'][$i]['password'] = &#8221;;<br />
$cfg['Servers'][$i]['extension'] = &#8216;mysql&#8217;;</span></p>
<p>Replace config with cookie</p>
<p><span style="color: #0000ff;">/* Authentication type and info */<br />
<strong>$cfg['Servers'][$i]['auth_type'] = &#8216;cookie&#8217;;</strong></span></p>
<p>Save and restart the service. Next open phpmyadmin in web browser and enter username dan password.</p>


<p>Related posts:<ol><li><a href='http://gentirit.com/clear-cmos.html' rel='bookmark' title='Permanent Link: Clear CMOS'>Clear CMOS</a></li><li><a href='http://gentirit.com/enabled-root-login-to-gnome.html' rel='bookmark' title='Permanent Link: enabled root login to gnome'>enabled root login to gnome</a></li><li><a href='http://gentirit.com/data-connection.html' rel='bookmark' title='Permanent Link: Data Connection'>Data Connection</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://gentirit.com/enable-login-root-password-in-phpmyadmin.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Connection strings for Access with visual foxpro</title>
		<link>http://gentirit.com/connection-strings-for-access-with-visual-foxpro.html</link>
		<comments>http://gentirit.com/connection-strings-for-access-with-visual-foxpro.html#comments</comments>
		<pubDate>Wed, 03 Mar 2010 06:51:15 +0000</pubDate>
		<dc:creator>yuno</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Tips &amp; Trick]]></category>

		<category><![CDATA[visual foxpro]]></category>

		<guid isPermaLink="false">http://gentirit.com/?p=372</guid>
		<description><![CDATA[cKon = SQLSTRINGCONNECT(&#8221;Driver={Microsoft Access Driver (*.mdb)};Dbq=C:\mydata.mdb;Uid=Admin;Pwd=;&#8221;)
IF ckon &#60;= 0
MESSAGEBOX(&#8221;Database Conection Failed&#8221;,0+16,&#8221;Error&#8221;)
CLEAR EVENTS
QUIT
ELSE
MESSAGEBOX(&#8221;Database Conection Succeed&#8221;,0+16,&#8221;Succeed&#8221;)
ENDIF


Related posts:Data ConnectionHow to : Visual Foxpro &#124; OO CalcVisual Foxpro : Do&#8217;s and Dont&#8217;s


Related posts:<ol><li><a href='http://gentirit.com/data-connection.html' rel='bookmark' title='Permanent Link: Data Connection'>Data Connection</a></li><li><a href='http://gentirit.com/how-to-visual-foxpro-and-oo-calc.html' rel='bookmark' title='Permanent Link: How to : Visual Foxpro | OO Calc'>How to : Visual Foxpro | OO Calc</a></li><li><a href='http://gentirit.com/visual-foxpro-dos-and-donts.html' rel='bookmark' title='Permanent Link: Visual Foxpro : Do&#8217;s and Dont&#8217;s'>Visual Foxpro : Do&#8217;s and Dont&#8217;s</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>cKon = SQLSTRINGCONNECT(&#8221;Driver={Microsoft Access Driver (*.mdb)};Dbq=C:\mydata.mdb;Uid=Admin;Pwd=;&#8221;)</p>
<p>IF ckon &lt;= 0<br />
MESSAGEBOX(&#8221;Database Conection Failed&#8221;,0+16,&#8221;Error&#8221;)<br />
CLEAR EVENTS<br />
QUIT<br />
ELSE<br />
MESSAGEBOX(&#8221;Database Conection Succeed&#8221;,0+16,&#8221;Succeed&#8221;)</p>
<p>ENDIF</p>


<p>Related posts:<ol><li><a href='http://gentirit.com/data-connection.html' rel='bookmark' title='Permanent Link: Data Connection'>Data Connection</a></li><li><a href='http://gentirit.com/how-to-visual-foxpro-and-oo-calc.html' rel='bookmark' title='Permanent Link: How to : Visual Foxpro | OO Calc'>How to : Visual Foxpro | OO Calc</a></li><li><a href='http://gentirit.com/visual-foxpro-dos-and-donts.html' rel='bookmark' title='Permanent Link: Visual Foxpro : Do&#8217;s and Dont&#8217;s'>Visual Foxpro : Do&#8217;s and Dont&#8217;s</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://gentirit.com/connection-strings-for-access-with-visual-foxpro.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Visual foxpro: Terminate active windows application</title>
		<link>http://gentirit.com/visual-foxpro-terminate-active-windows-application.html</link>
		<comments>http://gentirit.com/visual-foxpro-terminate-active-windows-application.html#comments</comments>
		<pubDate>Fri, 20 Nov 2009 17:20:46 +0000</pubDate>
		<dc:creator>yuno</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Tips &amp; Trick]]></category>

		<category><![CDATA[visual foxpro]]></category>

		<guid isPermaLink="false">http://gentirit.com/?p=366</guid>
		<description><![CDATA[Here is some code to terminate active windows application with visual foxpro :
oWMI = GETOBJECT(&#8217;winmgmts://&#8217;)
cQuery = &#8220;select * from win32_process where name=&#8217;calc.exe&#8217;&#8221;
oResult = oWMI.ExecQuery(cQuery)
? oResult.Count
FOR EACH oProcess IN oResult
? oProcess.Name
oProcess.Terminate(0)
NEXT
source


Related posts:Visual Foxpro : Do&#8217;s and Dont&#8217;sHow to : Visual Foxpro &#124; OO CalcData Connection


Related posts:<ol><li><a href='http://gentirit.com/visual-foxpro-dos-and-donts.html' rel='bookmark' title='Permanent Link: Visual Foxpro : Do&#8217;s and Dont&#8217;s'>Visual Foxpro : Do&#8217;s and Dont&#8217;s</a></li><li><a href='http://gentirit.com/how-to-visual-foxpro-and-oo-calc.html' rel='bookmark' title='Permanent Link: How to : Visual Foxpro | OO Calc'>How to : Visual Foxpro | OO Calc</a></li><li><a href='http://gentirit.com/data-connection.html' rel='bookmark' title='Permanent Link: Data Connection'>Data Connection</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Here is some code to terminate active windows application with visual foxpro :</p>
<p>oWMI = GETOBJECT(&#8217;winmgmts://&#8217;)<br />
cQuery = &#8220;select * from win32_process where name=&#8217;calc.exe&#8217;&#8221;<br />
oResult = oWMI.ExecQuery(cQuery)<br />
? oResult.Count<br />
FOR EACH oProcess IN oResult<br />
? oProcess.Name<br />
oProcess.Terminate(0)<br />
NEXT</p>
<p><a href="http://www.tek-tips.com" target="_blank">source</a></p>


<p>Related posts:<ol><li><a href='http://gentirit.com/visual-foxpro-dos-and-donts.html' rel='bookmark' title='Permanent Link: Visual Foxpro : Do&#8217;s and Dont&#8217;s'>Visual Foxpro : Do&#8217;s and Dont&#8217;s</a></li><li><a href='http://gentirit.com/how-to-visual-foxpro-and-oo-calc.html' rel='bookmark' title='Permanent Link: How to : Visual Foxpro | OO Calc'>How to : Visual Foxpro | OO Calc</a></li><li><a href='http://gentirit.com/data-connection.html' rel='bookmark' title='Permanent Link: Data Connection'>Data Connection</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://gentirit.com/visual-foxpro-terminate-active-windows-application.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>The Important Functions of Address Plaques</title>
		<link>http://gentirit.com/the-important-functions-of-address-plaques.html</link>
		<comments>http://gentirit.com/the-important-functions-of-address-plaques.html#comments</comments>
		<pubDate>Thu, 12 Nov 2009 02:53:20 +0000</pubDate>
		<dc:creator>yuno</dc:creator>
		
		<category><![CDATA[Home &amp; Garden]]></category>

		<category><![CDATA[decoration]]></category>

		<category><![CDATA[house address plaques]]></category>

		<category><![CDATA[mailboxes]]></category>

		<guid isPermaLink="false">http://gentirit.com/?p=359</guid>
		<description><![CDATA[
We might think that address plaque is only an outdoor accessory that gives a sign to people about our home number. However, address plaque can have so many important functions. The simplest function is definitely helping our friend or relatives to find our home. Without an address plaque, they will not know the number of [...]


Related posts:<ol><li><a href='http://gentirit.com/buying-a-former-house.html' rel='bookmark' title='Permanent Link: Buying a former house'>Buying a former house</a></li><li><a href='http://gentirit.com/windows-blinds-and-shades.html' rel='bookmark' title='Permanent Link: windows blinds and shades'>windows blinds and shades</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mailboxandbeyond.com/images/PB060020.JPG"><img class="           alignleft" style="border: 2px solid black; margin: 5px;" title="http://www.mailboxandbeyond.com/images/PB060020.JPG" src="http://www.mailboxandbeyond.com/images/PB060020.JPG" alt="Custom Mailboxes" width="115" height="86" /></a></p>
<p class="MsoNormal"><span style="font-size: 10pt; font-family: Arial;">We might think that address plaque is only an outdoor accessory that gives a sign to people about our home number. However, address plaque can have so many important functions. The simplest function is definitely helping our friend or relatives to find our home. Without an address plaque, they will not know the number of our home and the only solution is predicting or asking people around the area. Of course, it will be so complicated. </span></p>
<p><a href="http://www.mailboxandbeyond.com/images/Bronze.jpg"><img class="        alignright" style="border: 2px solid black; margin: 5px;" title="http://www.mailboxandbeyond.com/images/Bronze.jpg" src="http://www.mailboxandbeyond.com/images/Bronze.jpg" alt="Bronze Mialboxes" width="90" height="96" /></a></p>
<p class="MsoNormal"><span style="font-size: 10pt; font-family: Arial;">Besides giving easiness for our friend, <span style="color: blue;"><a href="http://www.mailboxandbeyond.com/">address plaque</a></span> can also be a life saver. For example, if the unfortunate thing happened to us and we need ambulance to take us to hospital, with address plaque, the driver will be able to find our home easily. <span style="color: blue;"><a href="http://www.mailboxandbeyond.com/">Address plaques</a></span> can also become a garden decoration. Today’s <span style="color: blue;"><a href="http://www.mailboxandbeyond.com/">house address plaques</a></span> are made into various models. We can find one that suits our home concept or one that can beautify our garden. <span> </span><span> </span><span> </span><span> </span><span> </span><span> </span><span> </span><span> </span><span> </span></span></p>
<p class="MsoNormal"><span style="font-size: 10pt; font-family: Arial;">Since <span style="color: blue;"><a href="http://www.mailboxandbeyond.com/">address signs</a></span> have to face different weather temperatures and even extreme temperatures, we need to find one with high quality material and coat. Mailboxandbeyond.com is the best place to find finest address plaques. Juts visit on the website to see address plaque collection from well-known brands. <span> </span><span> </span><span><br />
</span></span></p>


<p>Related posts:<ol><li><a href='http://gentirit.com/buying-a-former-house.html' rel='bookmark' title='Permanent Link: Buying a former house'>Buying a former house</a></li><li><a href='http://gentirit.com/windows-blinds-and-shades.html' rel='bookmark' title='Permanent Link: windows blinds and shades'>windows blinds and shades</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://gentirit.com/the-important-functions-of-address-plaques.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Visual Foxpro : Do&#8217;s and Dont&#8217;s</title>
		<link>http://gentirit.com/visual-foxpro-dos-and-donts.html</link>
		<comments>http://gentirit.com/visual-foxpro-dos-and-donts.html#comments</comments>
		<pubDate>Tue, 03 Nov 2009 03:11:29 +0000</pubDate>
		<dc:creator>yuno</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Tips &amp; Trick]]></category>

		<category><![CDATA[visual foxpro]]></category>

		<guid isPermaLink="false">http://gentirit.com/?p=356</guid>
		<description><![CDATA[Ada beberapa hal yang sebaiknya dilakukan dan tidak dilakukan dalam pemrograman Visual Foxpro.

Jangan gunakan variable PUBLIC. Variabel public sulit dilAcak dan bukan design yang baik.


Tidak menggunakan Formsets.


Jangan sering (overload) Form.Refresh. Terlalu banayak form.refresh bisa memperlambat aplikasi


Gunakan awalan (prefix) untuk jenis &#38; obyek. Misalnya cName,nPrice


Hindari SET FILTER karena bisa memperlambat kinerja aplikasi kecuali disaat Rushmore tidak [...]


Related posts:<ol><li><a href='http://gentirit.com/visual-foxpro-terminate-active-windows-application.html' rel='bookmark' title='Permanent Link: Visual foxpro: Terminate active windows application'>Visual foxpro: Terminate active windows application</a></li><li><a href='http://gentirit.com/combo-box-dalam-grid-visual-foxpro.html' rel='bookmark' title='Permanent Link: Combo box dalam Grid - Visual Foxpro'>Combo box dalam Grid - Visual Foxpro</a></li><li><a href='http://gentirit.com/membangun-sms-gateway-dengan-gammu-dan-visual-foxpro.html' rel='bookmark' title='Permanent Link: Membangun SMS Gateway dengan Gammu dan Visual Foxpro'>Membangun SMS Gateway dengan Gammu dan Visual Foxpro</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Ada beberapa hal yang sebaiknya dilakukan dan tidak dilakukan dalam pemrograman <strong>Visual Foxpro</strong>.</p>
<ul>
<li>Jangan gunakan <strong>variable</strong> <strong>PUBLIC</strong>. Variabel public sulit dilAcak dan bukan design yang baik.</li>
</ul>
<ul>
<li>Tidak menggunakan <strong>Formsets</strong>.</li>
</ul>
<ul>
<li>Jangan sering (overload) <strong>Form.Refresh.</strong> Terlalu banayak form.refresh bisa memperlambat aplikasi</li>
</ul>
<ul>
<li>Gunakan awalan (<strong>prefix</strong>) untuk jenis &amp; obyek. Misalnya <em>cName,nPrice</em></li>
</ul>
<ul>
<li>Hindari <strong>SET FILTER</strong> karena bisa memperlambat kinerja aplikasi kecuali disaat <strong>Rushmore</strong> tidak dapat digunakan.</li>
</ul>
<ul>
<li>Jangan lupa <strong>SETs</strong> anda. Ingat SETs anda saat <strong>BeforeOpenTables</strong> event pada <strong>DataEnvironment</strong> saat form menggunakan <strong>Private DataSession.</strong> Atau bisa juga SETs pada <strong>Form.Load()</strong></li>
</ul>
<ul>
<li>Setiap tabel harus memiliki <strong>Primary Key</strong></li>
</ul>
<ul>
<li>Hindari pengulangan penulisan code (<strong>code repition</strong>) yang sama</li>
</ul>
<ul>
<li>Gunakan default <strong>Window Close button</strong></li>
</ul>
<ul>
<li>Jangan menggunakan garis bawah dalam penamaan variabel dan field</li>
</ul>
<ul>
<li>Jika memungkinkan, ikuti <strong>Panduan Standar MS Windows Design</strong></li>
</ul>
<ul>
<li><strong>Komentar.</strong> Tidak hanya komentar dalam <strong>code</strong>, tapi juga dalam <strong>properti</strong> dan <strong>metode</strong> dalam <strong>Form</strong>, <strong>class designer</strong>, <strong>tables</strong> &amp; <strong>fields</strong> dalam <strong>table designer</strong> dan <strong>modul-modul</strong> dalam <strong>project manager</strong>. Anda akan mendapatkan bahwa komentar anda sangat membantu anda.</li>
</ul>
<ul>
<li>Gunakan <strong>SEEK PADR(field_name,field_len)</strong> jika ingin melakukan pencarian secara <strong>exact match</strong></li>
</ul>
<ul>
<li>Gunakan <strong>local table</strong> jika memungkinkan</li>
</ul>
<p>Selengkapnya bisa dibaca dari <strong><a href="http://www.universalthread.com/visualfoxpro/dodont.asp" target="_blank">sini</a></strong></p>


<p>Related posts:<ol><li><a href='http://gentirit.com/visual-foxpro-terminate-active-windows-application.html' rel='bookmark' title='Permanent Link: Visual foxpro: Terminate active windows application'>Visual foxpro: Terminate active windows application</a></li><li><a href='http://gentirit.com/combo-box-dalam-grid-visual-foxpro.html' rel='bookmark' title='Permanent Link: Combo box dalam Grid - Visual Foxpro'>Combo box dalam Grid - Visual Foxpro</a></li><li><a href='http://gentirit.com/membangun-sms-gateway-dengan-gammu-dan-visual-foxpro.html' rel='bookmark' title='Permanent Link: Membangun SMS Gateway dengan Gammu dan Visual Foxpro'>Membangun SMS Gateway dengan Gammu dan Visual Foxpro</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://gentirit.com/visual-foxpro-dos-and-donts.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Keyboard shortcuts on windows</title>
		<link>http://gentirit.com/keyboard-shortcuts-on-windows.html</link>
		<comments>http://gentirit.com/keyboard-shortcuts-on-windows.html#comments</comments>
		<pubDate>Tue, 27 Oct 2009 03:32:10 +0000</pubDate>
		<dc:creator>yuno</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<category><![CDATA[Tips &amp; Trick]]></category>

		<category><![CDATA[Tips]]></category>

		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://gentirit.com/?p=350</guid>
		<description><![CDATA[Keyboard shortcuts on windows (with windows logo) : 
- Windows Logo = Display or hide the Start menu
- Windows Logo + E = Open window explorer
- Windows Logo + D = Display desktop
- Windows Logo + L = Lockscreen ( Lock keyboard )
- Windows Logo + F = Open window Search &#38; Result
- Windows Logo [...]


Related posts:<ol><li><a href='http://gentirit.com/disable-windows-genuine-notification.html' rel='bookmark' title='Permanent Link: Disable Windows Genuine Notification'>Disable Windows Genuine Notification</a></li><li><a href='http://gentirit.com/howto-remove-windows-activation-product.html' rel='bookmark' title='Permanent Link: Howto: Remove Windows Activation Product'>Howto: Remove Windows Activation Product</a></li><li><a href='http://gentirit.com/enhance-windows-perfomance.html' rel='bookmark' title='Permanent Link: Enhance windows perfomance'>Enhance windows perfomance</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Keyboard shortcuts on windows (with windows logo)</strong> : <a href="http://img136.imageshack.us/img136/5277/windowskeyboardt2.jpg"><img class="alignright" style="border: 1px solid black;" title="http://img136.imageshack.us/img136/5277/windowskeyboardt2.jpg" src="http://img136.imageshack.us/img136/5277/windowskeyboardt2.jpg" alt="" width="158" height="118" /></a><br />
- Windows Logo = Display or hide the Start menu<br />
- Windows Logo + E = Open window explorer<br />
- Windows Logo + D = Display desktop<br />
- Windows Logo + L = Lockscreen ( Lock keyboard )<br />
- Windows Logo + F = Open window Search &amp; Result<br />
- Windows Logo + R = Open &#8220;Run&#8221; dialog<br />
- Windows Logo + M = Display desktop &amp; minimize all windows<br />
- Windows Logo + Shift + M = Restore or maximize all windows<br />
- Windows Logo + F1 = Open Help &amp; Support<br />
- Windows Logo + U = Open Utility Manager</p>


<p>Related posts:<ol><li><a href='http://gentirit.com/disable-windows-genuine-notification.html' rel='bookmark' title='Permanent Link: Disable Windows Genuine Notification'>Disable Windows Genuine Notification</a></li><li><a href='http://gentirit.com/howto-remove-windows-activation-product.html' rel='bookmark' title='Permanent Link: Howto: Remove Windows Activation Product'>Howto: Remove Windows Activation Product</a></li><li><a href='http://gentirit.com/enhance-windows-perfomance.html' rel='bookmark' title='Permanent Link: Enhance windows perfomance'>Enhance windows perfomance</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://gentirit.com/keyboard-shortcuts-on-windows.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Tips: mencegah anak agar tidak membuka situs porno</title>
		<link>http://gentirit.com/tips-mencegah-anak-agar-tidak-membuka-situs-porno.html</link>
		<comments>http://gentirit.com/tips-mencegah-anak-agar-tidak-membuka-situs-porno.html#comments</comments>
		<pubDate>Mon, 19 Oct 2009 03:42:29 +0000</pubDate>
		<dc:creator>yuno</dc:creator>
		
		<category><![CDATA[Healthy &amp; Family]]></category>

		<category><![CDATA[Tips &amp; Trick]]></category>

		<category><![CDATA[internet]]></category>

		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://gentirit.com/?p=345</guid>
		<description><![CDATA[   

Teknologi internet sekarang tidak bisa dipisahkan dari kehidupan sehari-hari. Bagi Anda yang memiliki buah hati, internet bisa membantu menyelesaikan tugas-tugas dari sekolah. Namun perlu diwaspadai dampak negatif dari internet yang sangat besar.
Salah satu cara untuk mengontrol pemakaian internet adalah menggunakan penyaring / internet filter yang bisa menutup akses pada situs tertentu yang [...]


Related posts:<ol><li><a href='http://gentirit.com/hypnoparenting-%e2%80%93-sugesti-dalam-mengasuh-anak.html' rel='bookmark' title='Permanent Link: Hypnoparenting – Sugesti Dalam Mengasuh Anak'>Hypnoparenting – Sugesti Dalam Mengasuh Anak</a></li><li><a href='http://gentirit.com/table-tennis-12-killer-tips.html' rel='bookmark' title='Permanent Link: Table Tennis : 12 Killer Tips'>Table Tennis : 12 Killer Tips</a></li><li><a href='http://gentirit.com/breastfeeding-father.html' rel='bookmark' title='Permanent Link: Breastfeeding Father'>Breastfeeding Father</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><!-- ======================================================= --><!-- Created by AbiWord, a free, Open Source wordprocessor.  --> <!-- For more information visit http://www.abisource.com.    --> <!-- ======================================================= --> <!-- #toc, .toc, .mw-warning { 	border: 1px solid #aaa; 	background-color: #f9f9f9; 	padding: 5px; 	font-size: 95%; } #toc h2, .toc h2 { 	display: inline; 	border: none; 	padding: 0; 	font-size: 100%; 	font-weight: bold; } #toc #toctitle, .toc #toctitle, #toc .toctitle, .toc .toctitle { 	text-align: center; } #toc ul, .toc ul { 	list-style-type: none; 	list-style-image: none; 	margin-left: 0; 	padding-left: 0; 	text-align: left; } #toc ul ul, .toc ul ul { 	margin: 0 0 0 2em; } #toc .toctoggle, .toc .toctoggle { 	font-size: 94%; }@media print, projection, embossed { 	body { 		padding-top:1in; 		padding-bottom:1in; 		padding-left:1in; 		padding-right:1in; 	} } body { 	font-family:'Times New Roman'; 	color:#000000; 	widows:2; 	font-style:normal; 	text-indent:0in; 	font-variant:normal; 	font-weight:normal; 	font-size:12pt; 	text-decoration:none; 	text-align:left; } table { } td { 	border-collapse:collapse; 	text-align:left; 	vertical-align:top; } p, h1, h2, h3, li { 	color:#000000; 	font-family:'Times New Roman'; 	font-size:12pt; 	text-align:left; 	vertical-align:normal; } --></p>
<div>
<p>Teknologi internet sekarang tidak bisa dipisahkan dari kehidupan sehari-hari. Bagi Anda yang memiliki buah hati, <em><strong>internet</strong></em> bisa membantu menyelesaikan tugas-tugas dari sekolah. Namun perlu diwaspadai dampak negatif dari internet yang sangat besar.</p>
<p><span lang="en-US">Salah satu cara untuk mengontrol pemakaian internet adalah menggunakan penyaring / <em><strong>internet filter</strong></em> yang bisa menutup akses pada situs tertentu yang tidak sesuai dengan anak-anak. Pengawasan langsung dari orang tua sangat diperlukan karena tidak seharusnya hanya mengandalkan internet filter. Ada beberapa fakta mengenai penyaring / filter yang perlu diketahui:</span></p>
<ul>
<li><span lang="en-US"><em><strong>Program penyaring / internet filter</strong></em> yang sebagian besar menggunakan teknik kombinasi tidak mampu menyaring semua dan sering kali bocor sehingga laman yang disaring bisa diakses.</span></li>
</ul>
<ul>
<li><span lang="en-US"> <em><strong>Penyaring / internet filter bisa dibobol oleh anak-anak</strong></em>. Mereka bisa menemukan cara untuk membuka internet filter yang sudah terpasang. Orang tua harus selalu memeriksa secara berkala komputer yang digunakan anak-anak. Jangan meremehkan kemampuan anak-anak.</span></li>
</ul>
<ul>
<li><span lang="en-US"> <em><strong>Beritahukan kepada anak-anak tentang internet filter</strong></em>.  Beri penjelasan bahwa Anda ingin bertanggung jawab dalam penggunaan serta keamanan dalam berinternet.  Dengan demikian akan membuat anak-anak lebih dewasa dan mengerti.</span></li>
</ul>
<ul>
<li><span lang="en-US"> <em><strong>Orang tua adalah penyaring / filter utama.</strong></em> Anak-anak memiliki rasa ingin tahu yang besar, termasuk terhadap hal-hal baru yang bersifat negatif seperti <em><strong>pornografi</strong></em>, <em><strong>narkoba</strong></em> dsb. Dalam hal ini komunikasi yang baik antara orang tua dengan anak-anak sangat diperlukan. Diskusikan hal-hal negatif dari internet serta dampaknya di kemudian hari dengan anak-anak sebelum ia tahu / mengakses tanpa sepengetahuan Anda. Tindakan ini adalah pencegahan yang sangat baik buat anak-anak.</span></li>
</ul>
<p>sumber:vivanews</p></div>


<p>Related posts:<ol><li><a href='http://gentirit.com/hypnoparenting-%e2%80%93-sugesti-dalam-mengasuh-anak.html' rel='bookmark' title='Permanent Link: Hypnoparenting – Sugesti Dalam Mengasuh Anak'>Hypnoparenting – Sugesti Dalam Mengasuh Anak</a></li><li><a href='http://gentirit.com/table-tennis-12-killer-tips.html' rel='bookmark' title='Permanent Link: Table Tennis : 12 Killer Tips'>Table Tennis : 12 Killer Tips</a></li><li><a href='http://gentirit.com/breastfeeding-father.html' rel='bookmark' title='Permanent Link: Breastfeeding Father'>Breastfeeding Father</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://gentirit.com/tips-mencegah-anak-agar-tidak-membuka-situs-porno.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
