Creating a Data File in AS400
Creating a Data File in AS400 To create a file named FTPOUT that is 100 characters in length: CRTPF FILE(MYLIB/FTPOUT) RCDLEN(100) The AS/400 actually creates a file named FTPOUT, a member named FTPOUT and a field of length 100 that is named FTPOUT. To…
How to Create an iSeries Database File
How to Create an iSeries Database File Procedure Launch a BlueZone iSeries Display session. From the BlueZone MenuBar, choose Transfer:Send/Receive. The BlueZone Host File Transfer desktop user interface will launch. From the Host File Transfer MenuBar…
Creating Modal Window or Highslide window using HTML5
Creating Modal Window or Highslide window using HTML5 The modal window is one of the most common UI that we can find in websites. It is commonly used to carry a subscription form, uploading forms (like the one in WordPress), displaying notifications and…
Organizing and Sorting CSS
Organizing and Sorting CSS Compared to other web-related languages, CSS is relatively straightforward and easy to write. But at the same time, it is also hard to organize, particularly when it comes to codes that consist of thousands of lines.…
Add or Remove HTML classes in Jquery
Add or Remove HTML classes in Jquery Adding new HTML class is a no-brainer You can do this with jQuery. This example function below will add and remove my-new-class to the <div>. // ## add class…
How to write code in BASIC Programming Languages
How to write code in BASIC Programming Languages 10 CLS 20 PRINT “Hello, world!” 30 PRINT “I’m learning about commands in BASIC.” 40 PRINT “This text is being printed via the PRINT command.” 50 PRINT “On…
Tips to Update your Internal iPhone Apps Remotely without Developer Account
Tips to Update your Internal iPhone Apps Remotely without Developer Account For MAC 1-If you have an existing version of the application, you must first delete it; either directly from your Apple device or from the “Applications” section of…
Deploy iPhone Apps Through Xcode
Deploy iPhone Apps Through Xcode Open Keychain Access on your MAC System Create a Certificate (Keychain Acces -> Certificate Assistant -> Create a Certificate) Go to Category (Left Pane of your Keychain Access) Click on My certificates (If needed…
Notable Test Automation Tools
Notable Test Automation Tools Tool name Produced by Latest version AutoIt Jonathan Bennett & AutoIt Team 3.3.8.1 Cucumber Open Source 1.0.2 eggPlant TestPlant 2012 EiffelStudio AutoTest Eiffel Software 7.1, Jun 2012 FitNesse Open Source v20130530 HP…
Tips for Bounds and Frames in IOS
Tips for Bounds and Frames in IOS The bounds of an UIView is the rectangle, expressed as a location (x,y) and size (width,height) relative to its own coordinate system (0,0). The frame of an UIView is the rectangle, expressed as a location (x,y) and size…