Banner Ad

    A    L    W    A    Y    S           D    E    S    I    R    E           T    O           L    E    A    R    N           S    O    M    E    T    H    I    N    G           U    S    E    F    U    L   

Technology and business

technology and business are becoming inextricably interwoven. I don't think anybody can talk meaningfully about one without the talking about the other

Tuesday, January 31, 2017

How to get parent form field value from the child form in IFS

We can get parent form 'Status' field value to the child record form methods by calling following code  frmOrderQuotation_Cust.FromHandle(i_hWndParent).dfsState.Text  Here 'dfsState' is the parent form field name and 'frmOrderQuotation_Cust' is parent form name ...

How to handle CLOB type data in IFS

1.) override  vrtDataRecordExecuteNew in framework to insert CLOB type data from the client public override SalBoolean vrtDataRecordExecuteNew(SalSqlHandle hSql)         {             return this.DataRecordExecuteNew(hSql);         }         public new SalBoolean DataRecordExecuteNew(SalSqlHandle hSql)         {             #region Local Variables             SalString...

Monday, June 6, 2016

How to split word by new line character in PLSQL / SQL query with regular expressions

Convert above single lengthy word into several rows as following.  Above 7 lines in single text box will take as 7 new lines as per below code. Following is the PL-SQL cursor  to split single word into several words based on new line character 1.)   CHR(10) -- Line feed 2.)   CHR(13) -- Carriage return. 1 2 3 4 CURSOR get_work_desc(str_ VARCHAR2) IS SELECT regexp_substr(str_,'[^*' || chr(13) || chr(10)...

Friday, November 8, 2013

All Head First Series Ebooks Collection for free

All Head First Series Ebooks Collection Computers Head First Data Analysis.pdf 23 MBHead First Networking.pdf 38 MBHead First WordPress.pdf 27 MBHeadFirst WebDesign.pdf 40 MB Languages Head First Ajax.pdf 50 MBHead First C#.pdf 71 MBHead First HTML with CSS and XHTML.chm 1 MBHead First HTML with CSS and XHTML.pdf 21 MBHead First Java.pdf 34 MBHead First Javascript.pdf 51 MBHead First PHP and MySQL.pdf 32 MBHead First...

Sunday, September 1, 2013

Easy and fast way to add PayPal payment gateway to your website

following is paypal Buy now button java script code You need to add paypal-button.min.js   click here to download andadd as follows between your <head> tag  or add github URL https://raw.github.com/paypal/JavaScriptButtons/master/dist/paypal-button.min.js <script      data-callback="http://sep06.netne.net/online_portal/controller_b/post_ad/success"      data-tax="0"      data-shipping="0"      data-amount="5.5"      data-name="harsha"   ...

PHP codigniter ajax call to load dropdown when another dropdown changes

<select id="makes2" name="makes2" style="width:200px;" data-hint="" onchange="load_dropdown_content1($('#field2'), this.value)">                           <?php  $sql = mysql_query("SELECT distinct make FROM advertisements"); while ($row = mysql_fetch_array($sql)){ echo "<option value='".$row['make']."'>" . $row['make'] . "</option>"; } ?> </select> here my values are hard coded to load values from mysql databasewhen dropdown onchange() function...

How to define static javascript variable

<script type="text/javascript"> checkadid.count=0; checkadid.adid=""; function checkadid(checkbox) { checkadid.adid=checkadid.adid.concat(checkbox.value);     if (checkbox.checked)     {              } } </script> here my javascript static variable is checkadid.adid since javascripts are weakly type there is no hard and fast rules you need to define variable as above and i used this static variable access to following java script function function load_table(){ ...

Related Posts Plugin for WordPress, Blogger...

your comments