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
Imports System.IO | |
Imports System.String | |
Imports System.Net | |
Imports CefSharp | |
Imports CefSharp.WinForms | |
Public Class Form1 | |
Dim sReader As String | |
Dim sPath As String | |
Dim browser As ChromiumWebBrowser |
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
<?xml version="1.0" encoding="utf-8" ?> | |
<set | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
android:shareInterpolator="false"> | |
<rotate | |
android:fromDegrees="0" | |
android:toDegrees="360" | |
android:pivotX="50%" | |
android:pivotY="50%" | |
android:duration="2000" /> |
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
ImageView ivLogo = (ImageView) findViewById(R.id.ivLogo); | |
Animation rotate = AnimationUtils.loadAnimation(this,R.anim.custom_anim); | |
ivLogo.startAnimation(rotate); |
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
Screen[] screens = Screen.AllScreens; | |
Rectangle bounds = screens[0].Bounds; | |
this.SetBounds(bounds.X, bounds.Y, bounds.Width, bounds.Height); | |
this.StartPosition = FormStartPosition.CenterScreen; |
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
Screen[] screens = Screen.AllScreens; | |
Rectangle bounds = screens[0].Bounds; | |
this.SetBounds(bounds.X, bounds.Y, bounds.Width, bounds.Height); | |
this.StartPosition = FormStartPosition.CenterScreen; |
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
package com.engineer4myanmar.intakebook; | |
import java.util.ArrayList; | |
import java.util.List; | |
import android.content.Context; | |
import android.database.Cursor; | |
import android.database.sqlite.SQLiteDatabase; | |
/** | |
* @author manish.s | |
* Updat by Dr. Aung Win Htut |
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 <Wire.h> | |
#include <Adafruit_MCP23017.h> | |
#include <Adafruit_RGBLCDShield.h> | |
Adafruit_RGBLCDShield lcd = Adafruit_RGBLCDShield(); | |
#define RED 0x1 | |
#define YELLOW 0x3 | |
#define GREEN 0x2 | |
#define TEAL 0x6 |