Skip to content

Instantly share code, notes, and snippets.

View thecfguy's full-sized avatar

Pritesh thecfguy

View GitHub Profile
insert into <table name> select <field list> from <table name from copy data>
insert into <table name>
select <field list> from <table name from copy data>
@thecfguy
thecfguy / gist:6193183
Last active December 20, 2015 20:49 — forked from anonymous/gist:4282657
<cfscript>
x = createobject("webservice","http://www.webservicex.net/genericbarcode.asmx?WSDL",{refreshWSDL="yes",wsdl2javaArgs="-a -O 2000"});
argCollection.BarCodeParam = structNew();
argCollection.BarCodeParam.Height = 100;
argCollection.BarCodeParam.Width = 200;
argCollection.BarCodeParam.Angle = 50;
argCollection.BarCodeParam.Ratio = 1;
argCollection.BarCodeParam.Module = 1;
argCollection.BarCodeParam.Left = 10;
argCollection.BarCodeParam.Top = 10;