LESSON9 – INCLUDING INFO IN THE EXE

the method to this is almost the same as extrn/public, the way to this is using the prog "binobj" which comes with tp/bp or bc/tc and use is a following : "binobj" <InputFileName> <OutputFileName> <PublicName> lets say we have pic.dat and we want the public to be dat1 t

[ read more ]

LESSON8 – EXTERNALS AND PUBLICS

now in order to call a proc from another file, the files which contains the proc will have to declare the proc as public : . . . public clearscreen clearscreen proc far . . . ret endp and in your file you will have to declare the proc as extrn : . . .

[ read more ]

Get All Keys and Values of the Properties files in Java

Get All Keys and Values of the Properties files in Java

In this section, you will learn how to get all keys and it's values of the properties files in Java. Java provides the features to collection of all keys and values of the properties file. The properties files that can be used to large collections of information to be inserting in the properties fil

[ read more ]

SOLVED: How we send data from one jsp to other using Form ENCTYPE=”multipart/form-data”

hi dear’s I am caught in the problem that when i use “Form ENCTYPE=”multipart/form-data” and Method=”Post” and ACTION=”FileProcess.jsp” then i am get the file on FileProcess.jsp but i can’t get the other data like example Problem Post by that Som

[ read more ]

Android Filebased Persistence with Preferences, Filesystem and SD Card

Android Filebased Persistence with Preferences, Filesystem and SD Card

1. Android File Based Persistence 1.1. Methods of persistence Android allows to store local data as files. Android uses file based storage for handling application settings (Preferences) and instances of the SQLite database. For each application the Android system creates a "dat

[ read more ]

Bean life cycle in spring

This example gives you an idea on how to Initialize bean in the program and also explains the lifecycle of bean in spring. Run the given bean example to retrieves the values of the bean using java file. Here in the file given below i.e. (context.xml) we have declare the bean definition. Mybea

[ read more ]