This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run \ | |
--rm \ | |
--name adminer \ | |
--link bookstack_db \ | |
--network bookstack_default \ | |
-p 40000:8080 \ | |
-e ADMINER_DESIGN='nette' \ | |
-d \ | |
adminer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var text = ""; | |
var path = "C:\\Users\\yek\\Desktop\\"; | |
var file = "nesneler.txt" | |
var i = 0; | |
while (i != DocObject.MainForm.ComponentCount) { | |
text = DocObject.MainForm.Components(i).Name; | |
if (text.indexOf("Child") > -1) { | |
writeFile(path, file, text); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//BAŞLA | |
ChildEvrakAjan.GridViewMaster.SetEvent(Scripter, "OnCustomDrawCell", "ChildEvrakAjanOnCustomDrawCell", true); | |
//GENEL | |
var fieldSKod1 = null; | |
function ChildEvrakAjanOnCustomDrawCell(Sender, ACanvas, AViewInfo, ADone) { | |
if (!fieldSKod1) | |
fieldSKod1 = ChildEvrakAjan.GridViewMaster.GetColumnByFieldName("SKOD1"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SET TEXTSIZE 2147483647; | |
DECLARE @OBJ INT; | |
DECLARE @RESULT INT; | |
DECLARE @URL VARCHAR(1000); | |
SET @URL = 'https://www.tcmb.gov.tr/kurlar/today.xml'; | |
EXEC @RESULT = sys.sp_OACreate 'MSXML2.XMLHTTP', @OBJ OUT; |