This file contains hidden or 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
| #Region Header | |
| ; #INDEX# ======================================================================================================================= | |
| ; Title .........: ExpListView | |
| ; AutoIt Version : 3.3.5.0 | |
| ; Language ......: English | |
| ; Description ...: Functions for working with Explorer ListViews. | |
| ; Author(s) .....: Beege | |
| ; =============================================================================================================================== | |
| ; #CURRENT# ===================================================================================================================== |
This file contains hidden or 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
| #include <GuiConstantsEx.au3> | |
| #include <GuiListView.au3> | |
| #include <WindowsConstants.au3> | |
| #include <File.au3> | |
| #include <ExpListView.au3> | |
| OnAutoItExitRegister('_Exit') | |
| if $CmdLine[0]<>0 Then | |
| $mainroot=$CmdLine[1] | |
| Else | |
| $mainroot=FileSelectFolder("เลือกfolder","","","") |
This file contains hidden or 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
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
| <title>debug</title> | |
| </head> | |
| <body> | |
| <p> |
This file contains hidden or 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
| #include<stdio.h> | |
| int chk(int in) | |
| { | |
| int u[100],ct=0,i; | |
| if(in<0) | |
| return 0; | |
| while(in>=1) | |
| { | |
| u[ct++]=in%10; | |
| in/=10; |
This file contains hidden or 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
| #ifndef INTREV_H_INCLUDED | |
| #define INTREV_H_INCLUDED | |
| int pow_int(int base,int n) | |
| { | |
| int ans=1,i; | |
| for(i=1;i<=n;i++) | |
| ans*=base; | |
| return ans; | |
| } | |
| int intrev(int in) |
This file contains hidden or 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
| #include<cstdio> | |
| #include<algorithm> | |
| #include<cstring> | |
| using namespace std; | |
| int main() | |
| { | |
| char a[20001],b[20001]; | |
| gets(a); | |
| gets(b); | |
| strlwr(a); |
This file contains hidden or 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
| <html> | |
| <body onkeydown="al()"> | |
| <center><canvas id="myCanvas" width="1000" height="700" style="border:1px solid #c3c3c3;"> | |
| Your browser does not support the HTML5 canvas tag. | |
| </canvas></center> | |
| <br> | |
| <input tyep="text" id="debug_x" /> | |
| <input tyep="text" id="debug_y" /> | |
| <br> |
This file contains hidden or 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
| /** | |
| Project Name :: Song Of Memories | |
| Author :: ? | |
| LC :: ? | |
| Description :: BringLed is game :D | |
| System Requirement :: | |
| Device :: IPSTmicrobox | |
| Compiler :: AVR16mhz | |
| Device Module :: |
This file contains hidden or 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
| /** | |
| *** หมายเหตุ สวิตซ์ ให้ต่อที่ Pa 1 | |
| ไฟใหญ่ ให้ต่อที่ Pd 0 | |
| ไฟเล็ก ให้ต่อที่ Pd 1, Pd 2 | |
| **/ | |
| #include<ipst.h> | |
| int pin_a(int port) | |
| { | |
| if(!in_a(port)) | |
| { |
This file contains hidden or 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
| /*** | |
| Project : PaPo | |
| ลำโพง ให้ต่อ PD1 สวิตต่อ PA1 | |
| ***/ | |
| #include<in_out.h> | |
| #include<sound.h> | |
| int main() | |
| { | |
| bool isactive=false; | |
| while(1) |
OlderNewer