<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2093674414186793070</id><updated>2011-04-21T12:52:17.336-07:00</updated><category term='jquery'/><category term='Controlling sound volume and panning in flash cs3'/><category term='dataset'/><category term='crystal reports'/><category term='vista hibernation'/><category term='color coding of lan wire'/><category term='slideshow'/><title type='text'>Codings collected</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://gtbcomputers.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://gtbcomputers.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Gurpreet Singh</name><uri>http://www.blogger.com/profile/18179681627414194941</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>18</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2093674414186793070.post-4534822325618687436</id><published>2009-04-19T03:16:00.000-07:00</published><updated>2009-04-19T03:17:10.616-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='jquery'/><category scheme='http://www.blogger.com/atom/ns#' term='slideshow'/><title type='text'>JQuery Slideshow</title><content type='html'>InnerFade with JQuery &lt;br /&gt;What is it?&lt;br /&gt;InnerFade is a small plugin for the jQuery-JavaScript-Library. It's designed to fade you any element inside a container in and out.&lt;br /&gt;&lt;br /&gt;These elements could be anything you want, e.g. images, list-items, divs. Simply produce your own slideshow for your portfolio or advertisings. Create a newsticker or do an animation.&lt;br /&gt;&lt;br /&gt;The call&lt;br /&gt;$('ID or class of the element containing the fading objects').innerfade({&lt;br /&gt; animationtype: Type of animation 'fade' or 'slide' (Default: 'fade'),&lt;br /&gt; speed: Fadingspeed in milliseconds or keywords (slow, normal or fast)(Default: 'normal'),&lt;br /&gt; timeout: Time between the fades in milliseconds (Default: '2000'),&lt;br /&gt; type: Type of slideshow: 'sequence', 'random' or 'random_start' (Default: 'sequence'),&lt;br /&gt; containerheight: Height of the containing element in any css-height-value (Default: 'auto')&lt;br /&gt; runningclass: CSS-Class which the container get’s applied (Default: 'innerfade')&lt;br /&gt;});&lt;br /&gt;    &lt;script type="text/javascript"&gt;&lt;br /&gt; $(document).ready(&lt;br /&gt;  function(){&lt;br /&gt;   $('#news').innerfade({&lt;br /&gt;    animationtype: 'slide',&lt;br /&gt;    speed: 750,&lt;br /&gt;    timeout: 2000,&lt;br /&gt;    type: 'random',&lt;br /&gt;    containerheight: '1em'&lt;br /&gt;   });&lt;br /&gt;&lt;br /&gt;   $('#portfolio').innerfade({&lt;br /&gt;    speed: 'slow',&lt;br /&gt;    timeout: 4000,&lt;br /&gt;    type: 'sequence',&lt;br /&gt;    containerheight: '220px'&lt;br /&gt;   });&lt;br /&gt;   &lt;br /&gt;   $('.fade').innerfade({&lt;br /&gt;    speed: 'slow',&lt;br /&gt;    timeout: 1000,&lt;br /&gt;    type: 'sequence',&lt;br /&gt;    containerheight: '1.5em'&lt;br /&gt;   });&lt;br /&gt;  }&lt;br /&gt; );&lt;br /&gt;&lt;/script&gt;&lt;br /&gt;    Examples&lt;br /&gt;A newsticker (with animationtype: 'slide')&lt;br /&gt;1 Lorem ipsum dolor &lt;br /&gt;2 Sit amet, consectetuer 3 Sdipiscing elit, 4 sed diam nonummy nibh euismod tincidunt ut &lt;br /&gt;5 Nec Lorem. &lt;br /&gt;6 Et eget. &lt;br /&gt;7 Leo orci pede. &lt;br /&gt;8 Ratio randorus wil. &lt;br /&gt;&lt;ul id="news"&gt;&lt;br /&gt; &lt;li&gt;&lt;br /&gt;  &lt;a href="#n1"&gt;1 Lorem ipsum dolor&lt;/a&gt;&lt;br /&gt; &lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;br /&gt;  &lt;a href="#n2"&gt;2 Sit amet, consectetuer&lt;/a&gt;&lt;br /&gt; &lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;br /&gt;  &lt;a href="#n3"&gt;3 Sdipiscing elit,&lt;/a&gt;&lt;br /&gt; &lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;br /&gt;  &lt;a href="#n4"&gt;4 sed diam nonummy nibh euismod tincidunt ut&lt;/a&gt;&lt;br /&gt; &lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;br /&gt;  &lt;a href="#n5"&gt;5 Nec Lorem.&lt;/a&gt;&lt;br /&gt; &lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;br /&gt;  &lt;a href="#n6"&gt;6 Et eget.&lt;/a&gt;&lt;br /&gt; &lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;br /&gt;  &lt;a href="#n7"&gt;7 Leo orci pede.&lt;/a&gt;&lt;br /&gt; &lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;br /&gt;  &lt;a href="#n8"&gt;8 Ratio randorus wil.&lt;/a&gt;&lt;br /&gt; &lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;    A list with images and links&lt;br /&gt; &lt;br /&gt;   &lt;br /&gt;&lt;ul id="portfolio"&gt; &lt;br /&gt; &lt;li&gt;&lt;br /&gt;  &lt;a href="http://medienfreunde.com/deutsch/referenzen/kreation/good_guy__bad_guy.html"&gt;&lt;br /&gt;   &lt;img src="images/ggbg.gif" alt="Good Guy bad Guy" /&gt;&lt;br /&gt;  &lt;/a&gt;&lt;br /&gt; &lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;br /&gt;  &lt;a href="http://medienfreunde.com/deutsch/referenzen/kreation/whizzkids.html"&gt;&lt;br /&gt;   &lt;img src="images/whizzkids.gif" alt="Whizzkids" /&gt;&lt;br /&gt;  &lt;/a&gt;&lt;br /&gt; &lt;/li&gt; &lt;br /&gt; &lt;li&gt;&lt;br /&gt;  &lt;a href="http://medienfreunde.com/deutsch/referenzen/printdesign/koenigin_mutter.html"&gt;&lt;br /&gt;   &lt;img src="images/km.jpg" alt="Königin Mutter" /&gt;&lt;br /&gt;  &lt;/a&gt;&lt;br /&gt; &lt;/li&gt; &lt;br /&gt; &lt;li&gt;&lt;br /&gt;  &lt;a href="http://medienfreunde.com/deutsch/referenzen/webdesign/rt_reprotechnik_-_hybride_archivierung.html"&gt;&lt;br /&gt;   &lt;img src="images/rt_arch.jpg" alt="RT Hybride Archivierung" /&gt;&lt;br /&gt;  &lt;/a&gt;&lt;br /&gt; &lt;/li&gt; &lt;br /&gt; &lt;li&gt;&lt;br /&gt;  &lt;a href="http://medienfreunde.com/deutsch/referenzen/kommunikation/tuev_sued_gruppe.html"&gt;&lt;br /&gt;   &lt;img src="images/tuev.jpg" alt="TÜV SÜD Gruppe" /&gt;&lt;br /&gt;  &lt;/a&gt;&lt;br /&gt; &lt;/li&gt; &lt;br /&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2093674414186793070-4534822325618687436?l=gtbcomputers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gtbcomputers.blogspot.com/feeds/4534822325618687436/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2093674414186793070&amp;postID=4534822325618687436' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/4534822325618687436'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/4534822325618687436'/><link rel='alternate' type='text/html' href='http://gtbcomputers.blogspot.com/2009/04/jquery-slideshow.html' title='JQuery Slideshow'/><author><name>Gurpreet Singh</name><uri>http://www.blogger.com/profile/18179681627414194941</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2093674414186793070.post-8395192762814703709</id><published>2009-04-19T03:15:00.000-07:00</published><updated>2009-04-19T03:15:53.437-07:00</updated><title type='text'>Flash Detection Scripts</title><content type='html'>&lt;SCRIPT LANGUAGE=JavaScript1.1&gt;&lt;br /&gt;&lt;!--&lt;br /&gt;var MM_contentVersion = 6;&lt;br /&gt;var plugin = (navigator.mimeTypes &amp;&amp; navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;&lt;br /&gt;if ( plugin ) {&lt;br /&gt;  var words = navigator.plugins["Shockwave Flash"].description.split(" ");&lt;br /&gt;     for (var i = 0; i &lt; words.length; ++i)&lt;br /&gt;     {&lt;br /&gt;  if (isNaN(parseInt(words[i])))&lt;br /&gt;  continue;&lt;br /&gt;  var MM_PluginVersion = words[i]; &lt;br /&gt;     }&lt;br /&gt; var MM_FlashCanPlay = MM_PluginVersion &gt;= MM_contentVersion;&lt;br /&gt;}&lt;br /&gt;else if (navigator.userAgent &amp;&amp; navigator.userAgent.indexOf("MSIE")&gt;=0 &lt;br /&gt;   &amp;&amp; (navigator.appVersion.indexOf("Win") != -1)) {&lt;br /&gt; document.write('&lt;SCR' + 'IPT LANGUAGE=VBScript\&gt; \n'); //FS hide this from IE4.5 Mac by splitting the tag&lt;br /&gt; document.write('on error resume next \n');&lt;br /&gt; document.write('MM_FlashCanPlay = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." &amp; MM_contentVersion)))\n');&lt;br /&gt; document.write('&lt;/SCR' + 'IPT\&gt; \n');&lt;br /&gt;}&lt;br /&gt;if ( MM_FlashCanPlay ) {&lt;br /&gt; window.location.replace("http://www.kirupa.com/flash.htm");&lt;br /&gt;} else{&lt;br /&gt; window.location.replace("http://www.kirupa.com/noflash.htm");&lt;br /&gt;}&lt;br /&gt;//--&gt;&lt;br /&gt;&lt;br /&gt;&lt;/SCRIPT&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Replacing Image&lt;br /&gt;&lt;br /&gt;&lt;SCRIPT LANGUAGE=JavaScript1.1&gt;&lt;br /&gt;&lt;!--&lt;br /&gt;var MM_contentVersion = 6;&lt;br /&gt;var plugin = (navigator.mimeTypes &amp;&amp; navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;&lt;br /&gt;if ( plugin ) {&lt;br /&gt;  var words = navigator.plugins["Shockwave Flash"].description.split(" ");&lt;br /&gt;     for (var i = 0; i &lt; words.length; ++i)&lt;br /&gt;     {&lt;br /&gt;  if (isNaN(parseInt(words[i])))&lt;br /&gt;  continue;&lt;br /&gt;  var MM_PluginVersion = words[i]; &lt;br /&gt;     }&lt;br /&gt; var MM_FlashCanPlay = MM_PluginVersion &gt;= MM_contentVersion;&lt;br /&gt;}&lt;br /&gt;else if (navigator.userAgent &amp;&amp; navigator.userAgent.indexOf("MSIE")&gt;=0 &lt;br /&gt;   &amp;&amp; (navigator.appVersion.indexOf("Win") != -1)) {&lt;br /&gt; document.write('&lt;SCR' + 'IPT LANGUAGE=VBScript\&gt; \n'); //FS hide this from IE4.5 Mac by splitting the tag&lt;br /&gt; document.write('on error resume next \n');&lt;br /&gt; document.write('MM_FlashCanPlay = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." &amp; MM_contentVersion)))\n');&lt;br /&gt; document.write('&lt;/SCR' + 'IPT\&gt; \n');&lt;br /&gt;}&lt;br /&gt;if ( MM_FlashCanPlay ) {&lt;br /&gt;  document.write('&lt;OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');&lt;br /&gt; document.write('  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" ');&lt;br /&gt; document.write(' ID="script" WIDTH="300" HEIGHT="200" ALIGN=""&gt;');&lt;br /&gt; document.write(' &lt;PARAM NAME=movie VALUE="script.swf"&gt; &lt;PARAM NAME=quality VALUE=high&gt; &lt;PARAM NAME=bgcolor VALUE=#FFFFFF&gt;  '); &lt;br /&gt; document.write(' &lt;EMBED src="script.swf" quality=high bgcolor=#FFFFFF  ');&lt;br /&gt; document.write(' swLiveConnect=FALSE WIDTH="300" HEIGHT="200" NAME="script" ALIGN=""');&lt;br /&gt; document.write(' TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"&gt;');&lt;br /&gt; document.write(' &lt;/EMBED&gt;');&lt;br /&gt; document.write(' &lt;/OBJECT&gt;');&lt;br /&gt;} else{&lt;br /&gt; document.write('&lt;IMG SRC="script.gif" WIDTH="300" HEIGHT="200" usemap="#script" BORDER=0&gt;');&lt;br /&gt;}&lt;br /&gt;//--&gt;&lt;br /&gt;&lt;/SCRIPT&gt;&lt;NOSCRIPT&gt;&lt;IMG SRC="script.gif" WIDTH="300" HEIGHT="200" usemap="#script" BORDER=0&gt;&lt;/NOSCRIPT&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2093674414186793070-8395192762814703709?l=gtbcomputers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.kirupa.com/developer/mx/detection.htm' title='Flash Detection Scripts'/><link rel='replies' type='application/atom+xml' href='http://gtbcomputers.blogspot.com/feeds/8395192762814703709/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2093674414186793070&amp;postID=8395192762814703709' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/8395192762814703709'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/8395192762814703709'/><link rel='alternate' type='text/html' href='http://gtbcomputers.blogspot.com/2009/04/flash-detection-scripts.html' title='Flash Detection Scripts'/><author><name>Gurpreet Singh</name><uri>http://www.blogger.com/profile/18179681627414194941</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2093674414186793070.post-6951719870053966369</id><published>2009-03-30T01:28:00.000-07:00</published><updated>2009-03-30T01:29:41.409-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='dataset'/><category scheme='http://www.blogger.com/atom/ns#' term='crystal reports'/><title type='text'>Crystal Reports through Dataset</title><content type='html'>vconn = New SqlConnection("Data Source=.\SQLEXPRESS;AttachDbFilename=C:\Documents and Settings\GTB\My Documents\Visual Studio 2005\Projects\MyInstitute\Database1.mdf;Integrated Security=True;User Instance=True")&lt;br /&gt;        vconn.Open()&lt;br /&gt;        vadapter = New SqlDataAdapter("select * from students", vconn)&lt;br /&gt;        vdataset = New DataSet&lt;br /&gt;        vadapter.Fill(vdataset, "students")&lt;br /&gt;        vdatatable = vdataset.Tables("students")&lt;br /&gt;        Dim a As New CrystalReport1&lt;br /&gt;        a.Database.Tables(0).SetDataSource(vdataset)&lt;br /&gt;        CrystalReportViewer1.ReportSource = a&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2093674414186793070-6951719870053966369?l=gtbcomputers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gtbcomputers.blogspot.com/feeds/6951719870053966369/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2093674414186793070&amp;postID=6951719870053966369' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/6951719870053966369'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/6951719870053966369'/><link rel='alternate' type='text/html' href='http://gtbcomputers.blogspot.com/2009/03/crystal-reports-through-dataset.html' title='Crystal Reports through Dataset'/><author><name>Gurpreet Singh</name><uri>http://www.blogger.com/profile/18179681627414194941</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2093674414186793070.post-4379360971154598238</id><published>2009-03-23T11:08:00.000-07:00</published><updated>2009-03-23T11:08:43.361-07:00</updated><title type='text'>Photoshop CS4 Top Features</title><content type='html'>Vibrance is now in Photoshop CS4&lt;br /&gt;&lt;br /&gt; Vibrance lets you add saturation to colors that are not strong in an image, while not ovesaturating colors that are strong. It also protects skin tones from over/under saturation. Take my word for it, It should just be called 'Awesome' on a slider."&lt;br /&gt;&lt;br /&gt;Content Aware Resizing Is Here&lt;br /&gt;This is another feature that is best experienced but is nothing short of revolutionary! Content Aware Resizing allows you to transform an image not by bending pixels, but removing pixel 'seams' of areas of information that is not important. The result - amazing changes to an image with something as simple as dragging the image. &lt;br /&gt;&lt;br /&gt;The Adjustment Panels&lt;br /&gt;As with any other version of Photoshop, there are many different ways to approach correction using Levels, Curves, Exposure and so on. There are so many ways, that I feel at times it makes it a little hard for someone who is just starting to get a grasp on corrections. Well not anymore. Photoshop CS4 has introduced The Adjustment Panel to help get you correcting as fast as possible.&lt;br /&gt;&lt;br /&gt;You can now select all of your adjustments from within a panel, and Photoshop CS4 takes care of making the associated layers and maks for you. The corrections that are made are non destructive and sit in the Layers Panel. You can then go into those corrections and make more specialized changes, making your workflow even faster.&lt;br /&gt;&lt;br /&gt;On-Screen Image Controls&lt;br /&gt;Sometimes, we just dont want to experiment with sliders and curves and buttons to make a change. Sometimes we just want to point to a portion of an image and say "This part right here.. let's make it darker". On-Screen image controls make that method of correcting a reality. Clicking on the tool. you can then click on a specific portion of an image and move it up down, left, or right to see a change. On-Screen Image controls exist for Hue/Saturation, Curves, and Black and White &lt;br /&gt;&lt;br /&gt;One Bold Move to 3D&lt;br /&gt;In this version of Photoshop, 3D has taken a giant leap forward. You can now paint directly on 3D models, make 3D objects from 2D images, convert gradient shapes to objects, enchance text layers by giving them depth as well as export your creation to commonly used 3D formats&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2093674414186793070-4379360971154598238?l=gtbcomputers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.photoshopuser.com/cs4/sk_features.html' title='Photoshop CS4 Top Features'/><link rel='replies' type='application/atom+xml' href='http://gtbcomputers.blogspot.com/feeds/4379360971154598238/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2093674414186793070&amp;postID=4379360971154598238' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/4379360971154598238'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/4379360971154598238'/><link rel='alternate' type='text/html' href='http://gtbcomputers.blogspot.com/2009/03/photoshop-cs4-top-features.html' title='Photoshop CS4 Top Features'/><author><name>Gurpreet Singh</name><uri>http://www.blogger.com/profile/18179681627414194941</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2093674414186793070.post-3785119895759276322</id><published>2009-02-21T02:20:00.000-08:00</published><updated>2009-02-21T02:21:14.909-08:00</updated><title type='text'>Oracle 9i services on computer</title><content type='html'>Oraclegtboracle Agent&lt;br /&gt;Oraclegtboracle TNSListener&lt;br /&gt;Oracle MTS REcovery Service&lt;br /&gt;Oracle Service GTB&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2093674414186793070-3785119895759276322?l=gtbcomputers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gtbcomputers.blogspot.com/feeds/3785119895759276322/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2093674414186793070&amp;postID=3785119895759276322' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/3785119895759276322'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/3785119895759276322'/><link rel='alternate' type='text/html' href='http://gtbcomputers.blogspot.com/2009/02/oracle-9i-services-on-computer.html' title='Oracle 9i services on computer'/><author><name>Gurpreet Singh</name><uri>http://www.blogger.com/profile/18179681627414194941</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2093674414186793070.post-6464169034559574887</id><published>2008-09-05T10:09:00.001-07:00</published><updated>2008-09-05T10:09:44.262-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Controlling sound volume and panning in flash cs3'/><title type='text'>Controlling sound volume and panning in flash cs3</title><content type='html'>Controlling sound volume and panning&lt;br /&gt;An individual SoundChannel object controls both the left and the right stereo channels for a sound. If an mp3 sound is a monaural sound, the left and right stereo channels of the SoundChannel object will contain identical waveforms.&lt;br /&gt;&lt;br /&gt;You can find out the amplitude of each stereo channel of the sound being played using the leftPeak and rightPeak properties of the SoundChannel object. These properties show the peak amplitude of the sound waveform itself. They do not represent the actual playback volume. The actual playback volume is a function of the amplitude of the sound wave and the volume values set in the SoundChannel object and the SoundMixer class.&lt;br /&gt;&lt;br /&gt;The pan property of a SoundChannel object can be used to specify a different volume level for each of the left and right channels during playback. The pan property can have a value ranging from -1 to 1, where -1 means the left channel plays at top volume while the right channel is silent, and 1 means the right channel plays at top volume while the left channel is silent. Numeric values in between -1 and 1 set proportional values for the left and right channel values, and a value of 0 means that both channels play at a balanced, mid-volume level.&lt;br /&gt;&lt;br /&gt;The following code example creates a SoundTransform object with a volume value of 0.6 and a pan value of -1 (top left channel volume and no right channel volume). It passes the SoundTransform object as a parameter to the play() method, which applies that SoundTransform object to the new SoundChannel object that is created to control the playback.&lt;br /&gt;&lt;br /&gt;var snd:Sound = new Sound(new URLRequest("bigSound.mp3")); &lt;br /&gt;var trans:SoundTransform = new SoundTransform(0.6, -1);&lt;br /&gt;var channel:SoundChannel = snd.play(0, 1, trans);&lt;br /&gt;You can alter the volume and panning while a sound is playing by setting the pan or volume properties of a SoundTransform object and then applying that object as the soundTransform property of a SoundChannel object.&lt;br /&gt;&lt;br /&gt;You can also set global volume and pan values for all sounds at once using the soundTransform property of the SoundMixer class, as the following example shows:&lt;br /&gt;&lt;br /&gt;SoundMixer.soundTransform = new SoundTransform(1, -1);&lt;br /&gt;You can also use a SoundTransform object to set volume and pan values for a Microphone object (see Capturing sound input) and for Sprite objects and SimpleButton objects.&lt;br /&gt;&lt;br /&gt;The following example alternates the panning of the sound from the left channel to the right channel and back while the sound plays.&lt;br /&gt;&lt;br /&gt;import flash.events.Event;&lt;br /&gt;import flash.media.Sound;&lt;br /&gt;import flash.media.SoundChannel;&lt;br /&gt;import flash.media.SoundMixer;&lt;br /&gt;import flash.net.URLRequest;&lt;br /&gt;&lt;br /&gt;var snd:Sound = new Sound();         &lt;br /&gt;var req:URLRequest = new URLRequest("bigSound.mp3");&lt;br /&gt;snd.load(req);&lt;br /&gt;&lt;br /&gt;var panCounter:Number = 0;&lt;br /&gt;&lt;br /&gt;var trans:SoundTransform;&lt;br /&gt;trans = new SoundTransform(1, 0);&lt;br /&gt;var channel:SoundChannel = snd.play(0, 1, trans);&lt;br /&gt;channel.addEventListener(Event.SOUND_COMPLETE, onPlaybackComplete);&lt;br /&gt;&lt;br /&gt;addEventListener(Event.ENTER_FRAME, onEnterFrame);&lt;br /&gt;&lt;br /&gt;function onEnterFrame(event:Event):void&lt;br /&gt;{&lt;br /&gt;    trans.pan = Math.sin(panCounter);&lt;br /&gt;    channel.soundTransform = trans; // or SoundMixer.soundTransform = trans;&lt;br /&gt;    panCounter += 0.05;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;function onPlaybackComplete(event:Event):void&lt;br /&gt;{&lt;br /&gt;    removeEventListener(Event.ENTER_FRAME, onEnterFrame);&lt;br /&gt;}&lt;br /&gt;This code starts by loading a sound file and then creating a new SoundTransform object with volume set to 1 (full volume) and pan set to 0 (evenly balanced between left and right). Then it calls the snd.play() method, passing the SoundTransform object as a parameter. &lt;br /&gt;&lt;br /&gt;While the sound plays, the onEnterFrame() method executes repeatedly. The onEnterFrame() method uses the Math.sin() function to generate a value between -1 and 1, a range that corresponds to the acceptable values of the SoundTransform.pan property. The SoundTransform object's pan property is set to the new value, and then the channel's soundTransform property is set to use the altered SoundTransform object.&lt;br /&gt;&lt;br /&gt;To run this example, replace the filename bigSound.mp3 with the name of a local mp3 file. Then run the example. You should hear the left channel volume getting louder while the right channel volume gets softer, and vice versa.&lt;br /&gt;&lt;br /&gt;In this example, the same effect could be achieved by setting the soundTransform property of the SoundMixer class. However, that would affect the panning of all sounds currently playing, not just the single sound being played by this SoundChannel object.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2093674414186793070-6464169034559574887?l=gtbcomputers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gtbcomputers.blogspot.com/feeds/6464169034559574887/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2093674414186793070&amp;postID=6464169034559574887' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/6464169034559574887'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/6464169034559574887'/><link rel='alternate' type='text/html' href='http://gtbcomputers.blogspot.com/2008/09/controlling-sound-volume-and-panning-in.html' title='Controlling sound volume and panning in flash cs3'/><author><name>Gurpreet Singh</name><uri>http://www.blogger.com/profile/18179681627414194941</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2093674414186793070.post-4736357955129826951</id><published>2008-09-05T10:07:00.000-07:00</published><updated>2008-09-05T10:08:13.307-07:00</updated><title type='text'>Working with streaming sound files in flash</title><content type='html'>Working with streaming sound files&lt;br /&gt;When a sound file or video file is playing back while its data is still being loaded, it is said to be streaming. External sound files that are loaded from a remote server are often streamed so that the user doesn't have to wait for all the sound data to load before listening to the sound.&lt;br /&gt;&lt;br /&gt;The SoundMixer.bufferTime property represents the number of milliseconds of sound data that Flash Player should gather before letting the sound play. In other words, if the bufferTime property is set to 5000, Flash Player loads at least 5000 milliseconds worth of data from the sound file before the sound begins to play. The default SoundMixer.bufferTime value is 1000.&lt;br /&gt;&lt;br /&gt;Your application can override the global SoundMixer.bufferTime value for an individual sound by explicitly specifying a new bufferTime value when loading the sound. To override the default buffer time, first create a new instance of the SoundLoaderContext class, set its bufferTime property, and then pass it as a parameter to the Sound.load() method, as shown below:&lt;br /&gt;&lt;br /&gt;import flash.media.Sound;&lt;br /&gt;import flash.media.SoundLoaderContext;&lt;br /&gt;import flash.net.URLRequest;&lt;br /&gt;&lt;br /&gt;var s:Sound = new Sound();&lt;br /&gt;var req:URLRequest = new URLRequest("bigSound.mp3");&lt;br /&gt;var context:SoundLoaderContext = new SoundLoaderContext(8000, true);&lt;br /&gt;s.load(req, context);&lt;br /&gt;s.play();&lt;br /&gt;As playback continues, Flash Player tries to keep the sound buffer at the same size or greater. If the sound data loads faster than the playback speed, playback will continue without interruption. However, if the data loading rate slows down because of network limitations, the playhead could reach the end of the sound buffer. If this happens, playback is suspended, though it automatically resumes once more sound data has been loaded.&lt;br /&gt;&lt;br /&gt;To find out if playback is suspended because Flash Player is waiting for data to load, use the Sound.isBuffering property.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2093674414186793070-4736357955129826951?l=gtbcomputers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gtbcomputers.blogspot.com/feeds/4736357955129826951/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2093674414186793070&amp;postID=4736357955129826951' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/4736357955129826951'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/4736357955129826951'/><link rel='alternate' type='text/html' href='http://gtbcomputers.blogspot.com/2008/09/working-with-streaming-sound-files-in.html' title='Working with streaming sound files in flash'/><author><name>Gurpreet Singh</name><uri>http://www.blogger.com/profile/18179681627414194941</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2093674414186793070.post-8442666755803080466</id><published>2008-08-22T10:50:00.000-07:00</published><updated>2008-08-22T10:51:49.743-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='vista hibernation'/><title type='text'>Vista Hibernation off</title><content type='html'>1. Click Start, All Programs, and then right click on "Command Prompt".&lt;br /&gt;2. From the context menu click on "Run as administrator".&lt;br /&gt;3. If User Account Control prompts you to allow the action, click on Continue.&lt;br /&gt;4. In the command prompt window, type "powercfg –h off" (or "on" without the quotes) followed by Enter button.&lt;br /&gt;4. Close the Command Prompt window and you're done :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2093674414186793070-8442666755803080466?l=gtbcomputers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gtbcomputers.blogspot.com/feeds/8442666755803080466/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2093674414186793070&amp;postID=8442666755803080466' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/8442666755803080466'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/8442666755803080466'/><link rel='alternate' type='text/html' href='http://gtbcomputers.blogspot.com/2008/08/vista-hibernation-off.html' title='Vista Hibernation off'/><author><name>Gurpreet Singh</name><uri>http://www.blogger.com/profile/18179681627414194941</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2093674414186793070.post-2426366063748525828</id><published>2008-07-01T01:19:00.000-07:00</published><updated>2008-07-01T01:21:04.169-07:00</updated><title type='text'>File Upload</title><content type='html'>Label1.Text = "File Name : " &amp; FileUpload1.FileName&lt;br /&gt;Dim i As Integer = FileUpload1.PostedFile.ContentLength&lt;br /&gt;Label2.Text = Math.Round(i / 1024, 2) &amp; "KB"&lt;br /&gt;FileUpload1.PostedFile.SaveAs(Server.MapPath("~/images/") &amp; FileUpload1.FileName)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2093674414186793070-2426366063748525828?l=gtbcomputers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gtbcomputers.blogspot.com/feeds/2426366063748525828/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2093674414186793070&amp;postID=2426366063748525828' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/2426366063748525828'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/2426366063748525828'/><link rel='alternate' type='text/html' href='http://gtbcomputers.blogspot.com/2008/07/file-upload.html' title='File Upload'/><author><name>Gurpreet Singh</name><uri>http://www.blogger.com/profile/18179681627414194941</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2093674414186793070.post-9101366500232394960</id><published>2008-06-20T00:00:00.000-07:00</published><updated>2008-06-20T00:13:16.055-07:00</updated><title type='text'>Oracle Codings</title><content type='html'>exp 80 - to export database&lt;br /&gt;imp 80 - to import database&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2093674414186793070-9101366500232394960?l=gtbcomputers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gtbcomputers.blogspot.com/feeds/9101366500232394960/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2093674414186793070&amp;postID=9101366500232394960' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/9101366500232394960'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/9101366500232394960'/><link rel='alternate' type='text/html' href='http://gtbcomputers.blogspot.com/2008/06/oracle-codings.html' title='Oracle Codings'/><author><name>Gurpreet Singh</name><uri>http://www.blogger.com/profile/18179681627414194941</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2093674414186793070.post-988785837724288556</id><published>2008-06-19T09:06:00.001-07:00</published><updated>2008-06-19T09:06:35.302-07:00</updated><title type='text'>Print first 10 prime numbers</title><content type='html'>To print first 10 Prime Number&lt;br /&gt;&lt;br /&gt;Void main()&lt;br /&gt;{&lt;br /&gt;Int I, count=1;&lt;br /&gt;For(i=1;i&lt;=100;i++)&lt;br /&gt;{&lt;br /&gt;For(j=1;j&lt;=I;j++)&lt;br /&gt;{&lt;br /&gt;	If(j%2==0)&lt;br /&gt;	{	&lt;br /&gt;		Continue;&lt;br /&gt;	}&lt;br /&gt;	If(j==i)&lt;br /&gt;	{&lt;br /&gt;	Cout&lt;&lt;”Number is prime”&lt;&lt;i;&lt;br /&gt;	Count=count+1;&lt;br /&gt;	}&lt;br /&gt;If (count==10)&lt;br /&gt;{&lt;br /&gt;Break;&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2093674414186793070-988785837724288556?l=gtbcomputers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gtbcomputers.blogspot.com/feeds/988785837724288556/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2093674414186793070&amp;postID=988785837724288556' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/988785837724288556'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/988785837724288556'/><link rel='alternate' type='text/html' href='http://gtbcomputers.blogspot.com/2008/06/print-first-10-prime-numbers.html' title='Print first 10 prime numbers'/><author><name>Gurpreet Singh</name><uri>http://www.blogger.com/profile/18179681627414194941</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2093674414186793070.post-1933868070798476023</id><published>2008-06-19T09:01:00.000-07:00</published><updated>2008-06-19T09:03:55.275-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='color coding of lan wire'/><title type='text'>Lan Cable Colour Coding</title><content type='html'>1. White of Orange&lt;br /&gt;2. Orange&lt;br /&gt;3. White of Green&lt;br /&gt;4. Blue&lt;br /&gt;5. White of Blue&lt;br /&gt;6. Green&lt;br /&gt;7. White of Brown&lt;br /&gt;8. Brown&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2093674414186793070-1933868070798476023?l=gtbcomputers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gtbcomputers.blogspot.com/feeds/1933868070798476023/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2093674414186793070&amp;postID=1933868070798476023' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/1933868070798476023'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/1933868070798476023'/><link rel='alternate' type='text/html' href='http://gtbcomputers.blogspot.com/2008/06/lan-cable-colour-coding.html' title='Lan Cable Colour Coding'/><author><name>Gurpreet Singh</name><uri>http://www.blogger.com/profile/18179681627414194941</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2093674414186793070.post-7234994864672785300</id><published>2008-04-02T08:27:00.000-07:00</published><updated>2008-04-02T09:24:51.630-07:00</updated><title type='text'>making flash movie transparent</title><content type='html'>param value="transparent" name="wmode"  param name="wmode" value="transparent" close tag here&lt;br /&gt;&lt;br /&gt;Now, find the embed tag and add the following tags along with the other embed tags:&lt;br /&gt; wmode="transparent"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2093674414186793070-7234994864672785300?l=gtbcomputers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gtbcomputers.blogspot.com/feeds/7234994864672785300/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2093674414186793070&amp;postID=7234994864672785300' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/7234994864672785300'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/7234994864672785300'/><link rel='alternate' type='text/html' href='http://gtbcomputers.blogspot.com/2008/04/making-flash-movie-transparent.html' title='making flash movie transparent'/><author><name>Gurpreet Singh</name><uri>http://www.blogger.com/profile/18179681627414194941</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2093674414186793070.post-1865926146543618775</id><published>2008-04-01T09:15:00.001-07:00</published><updated>2008-04-01T09:15:52.565-07:00</updated><title type='text'>changing listview according to change in treeview and listbox</title><content type='html'>ListView1.Items.Clear()&lt;br /&gt;Dim a, b As String&lt;br /&gt;a = ListBox1.SelectedItem&lt;br /&gt;If File.Exists(TreeView1.SelectedNode.Text &amp;amp; "\" &amp;amp; a) Then&lt;br /&gt;b = TreeView1.SelectedNode.Text &amp;amp; "\" &amp;amp; a&lt;br /&gt;Dim y As FileInfo = New FileInfo(b)&lt;br /&gt;ListView1.Items.Add(y.Length / 1024 &amp;amp; " KB")&lt;br /&gt;ListView1.Items(0).SubItems.Add(y.CreationTime)&lt;br /&gt;ListView1.Items(0).SubItems.Add(y.LastAccessTime)&lt;br /&gt;ListView1.Items(0).SubItems.Add(y.IsReadOnly)&lt;br /&gt;Else&lt;br /&gt;ListView1.Items.Add("This is a directory")&lt;br /&gt;End If&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2093674414186793070-1865926146543618775?l=gtbcomputers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gtbcomputers.blogspot.com/feeds/1865926146543618775/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2093674414186793070&amp;postID=1865926146543618775' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/1865926146543618775'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/1865926146543618775'/><link rel='alternate' type='text/html' href='http://gtbcomputers.blogspot.com/2008/04/changing-listview-according-to-change.html' title='changing listview according to change in treeview and listbox'/><author><name>Gurpreet Singh</name><uri>http://www.blogger.com/profile/18179681627414194941</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2093674414186793070.post-7639339079878913950</id><published>2008-04-01T09:08:00.000-07:00</published><updated>2008-04-01T09:09:08.211-07:00</updated><title type='text'>Running Any process in vb.net</title><content type='html'>Dim p As New Process&lt;br /&gt;Dim pi As New ProcessStartInfo&lt;br /&gt;pi.FileName = TreeView1.SelectedNode.Text &amp;amp; "\" &amp;amp; ListBox1.SelectedItem&lt;br /&gt;pi.UseShellExecute = True&lt;br /&gt;p.StartInfo = pi&lt;br /&gt;p.Start()&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2093674414186793070-7639339079878913950?l=gtbcomputers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gtbcomputers.blogspot.com/feeds/7639339079878913950/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2093674414186793070&amp;postID=7639339079878913950' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/7639339079878913950'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/7639339079878913950'/><link rel='alternate' type='text/html' href='http://gtbcomputers.blogspot.com/2008/04/running-any-process-in-vbnet.html' title='Running Any process in vb.net'/><author><name>Gurpreet Singh</name><uri>http://www.blogger.com/profile/18179681627414194941</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2093674414186793070.post-8243539645261194087</id><published>2008-03-19T11:19:00.001-07:00</published><updated>2008-03-19T11:20:20.099-07:00</updated><title type='text'>Birthday Reminder VB.net</title><content type='html'>Dim a As DateTime&lt;br /&gt;a = Now&lt;br /&gt;&lt;br /&gt;vconn = New OleDbConnection("provider=microsoft.jet.oledb.4.0;data source=c:\friends.mdb")&lt;br /&gt;vconn.Open()&lt;br /&gt;&lt;br /&gt;vadapter = New OleDbDataAdapter("select * from birthdays", vconn)&lt;br /&gt;vdataset = New DataSet&lt;br /&gt;vadapter.Fill(vdataset, "birthdays")&lt;br /&gt;vdatatable = vdataset.Tables(0)&lt;br /&gt;&lt;br /&gt;Dim x As Integer&lt;br /&gt;&lt;br /&gt;Dim y As Integer = 0&lt;br /&gt;For x = 0 To vdatatable.Rows.Count - 1&lt;br /&gt;If DatePart("m", vdatatable.Rows(x).Item(2)) = Now.Month Then&lt;br /&gt;&lt;br /&gt;ListView1.Items.Add(vdatatable.Rows(x).Item(1))&lt;br /&gt;ListView1.Items(y).SubItems.Add(vdatatable.Rows(x).Item(2))&lt;br /&gt;ListView1.Items(y).SubItems.Add(vdatatable.Rows(x).Item(3))&lt;br /&gt;ListView1.GridLines = True&lt;br /&gt;y += 1&lt;br /&gt;&lt;br /&gt;End If&lt;br /&gt;Next&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2093674414186793070-8243539645261194087?l=gtbcomputers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gtbcomputers.blogspot.com/feeds/8243539645261194087/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2093674414186793070&amp;postID=8243539645261194087' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/8243539645261194087'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/8243539645261194087'/><link rel='alternate' type='text/html' href='http://gtbcomputers.blogspot.com/2008/03/birthday-reminder-vbnet.html' title='Birthday Reminder VB.net'/><author><name>Gurpreet Singh</name><uri>http://www.blogger.com/profile/18179681627414194941</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2093674414186793070.post-6092667702475979618</id><published>2008-03-16T04:14:00.000-07:00</published><updated>2008-03-16T04:15:32.364-07:00</updated><title type='text'>autosuggest &amp; data binding</title><content type='html'>dim oproducts as new autocompletestringcollection&lt;br /&gt;for each product as productdataset.productrow in me. productdataset.product&lt;br /&gt;if product.name.startswith("O") then&lt;br /&gt;oproducts.add (product.name)&lt;br /&gt;end if&lt;br /&gt;me.combobox.autocompletecustomsource= oproducts&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2093674414186793070-6092667702475979618?l=gtbcomputers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gtbcomputers.blogspot.com/feeds/6092667702475979618/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2093674414186793070&amp;postID=6092667702475979618' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/6092667702475979618'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/6092667702475979618'/><link rel='alternate' type='text/html' href='http://gtbcomputers.blogspot.com/2008/03/autosuggest-data-binding.html' title='autosuggest &amp; data binding'/><author><name>Gurpreet Singh</name><uri>http://www.blogger.com/profile/18179681627414194941</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2093674414186793070.post-7780021811479182279</id><published>2008-01-02T09:36:00.000-08:00</published><updated>2008-01-02T09:40:24.998-08:00</updated><title type='text'>To select only datepart from date column in sqlserver2005</title><content type='html'>To select only datepart from date column in sqlserver2005&lt;br /&gt;&lt;br /&gt;select datepart(m,dob) from customers&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2093674414186793070-7780021811479182279?l=gtbcomputers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gtbcomputers.blogspot.com/feeds/7780021811479182279/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2093674414186793070&amp;postID=7780021811479182279' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/7780021811479182279'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2093674414186793070/posts/default/7780021811479182279'/><link rel='alternate' type='text/html' href='http://gtbcomputers.blogspot.com/2008/01/to-select-only-datepart-from-date.html' title='To select only datepart from date column in sqlserver2005'/><author><name>Gurpreet Singh</name><uri>http://www.blogger.com/profile/18179681627414194941</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
