I need to print bill and the size of paper is half of normal 8.5 x 12.
i'm using epson printer..i'm using c#
it doesnt support customizing.please help me...
Imagine if you will a operating system that had the following methods for files
Create File: Creates (writes) a new file to disk. Calling this if a file exists causes a fault.
Update File: Updates an existing file. Call this if a file doesn't exist causes a fault.
Read File: Reads data from a file.
Enumerate files: Gets all files in a folder.
…
Please recommend me software engineering/methodology/practices paper. So far I have enjoyed:
1968 Dijkstra : Go To Statement Considered Harmful
Nikalus Wirth : Program Development by Stepwise Refinement
1971 David Parnas : Information Distribution Aspects of Design Methodology
1972 Liskov : Design Methodology for Reliable Software Systems…
I am looking for a tool which will make able to edit parts of Java code visually using something like inspector and place code back.
For example:
Person p = new Person();
p.setName("Bill Libb");
p.setAge(25);
This code should be generated from visual inspector and copied into Java IDE.
This will help quickly create sample objects for…
What is the standard way to throw and catch exceptions in R6RS Scheme? I'm looking for syntax that works in any version of Scheme (not just PLT) that implements R6RS.
R6RS guard syntax looks like it might fit the bill, but can somebody show me an example of how to actually use it?
I'm trying to find an existing Drupal module to fit the bill: basically, when an email fails to send, it should save the email and automatically attempt to resend the email later. I'm using the SMTP module to relay emails through an SMTP gateway (required by the hosting provider), but every once in a while the connection is refused -…
can anyone detail the particulars that are required to send data collected from a asp.net web page using vb.net that has a bunch of text boxes for first name, last name, address... item price, quantity, total price... to paypal for processing and settlement?
i have never worked with paypal so i am assuming paypal will get this info…
I'm looking for a thin, generic layer (probably written in PHP) that sits between a database (probably MySQL) and web service clients (which could be anything). I imagine there would be config files of some sort that tell it how to map web service requests to database queries (or other DB commands). It would also need to handle…
I need to be able to select multiple options on a web form, but those options are hierarchical. For example:
Option 1
Option 1 a
Option 1 b
Option 2
The user should be able to select Option 1, or Option 1a, etc. Selecting Option 1 a should automatically select Option 1.
Any controls/solutions out there that fit the…
i have to create an enum that contains values that are having spaces
public enum MyEnum
{
My cart,
Selected items,
Bill
}
This is giving error. Using concatenated words like MyCart or using underscore My_Cart is not an option. Please guide.
Thanks in advance.
I'm trying to iterate through an array of objects and recursively print out each objects properties.
Here is my object model:
type firmIdentifier = {
firmId: int ;
firmName: string ;
}
type authorIdentifier = {
authorId: int ;
authorName: string ;
firm: firmIdentifier ;
}
type…
ASP.NET newbie here. When on a page I'd like to set the corresponding menu item to selected. My approach is this:
On Home.aspx.cs:
Menu menu = (Menu)Master.FindControl("Menu1");
if (menu.Items.Count > 0)
{
menu.FindItem("Home").Selected = true;
}
Trouble…
Hello, currently I have dual boot with 2 windows 7. (dont ask why, long story, I need them for each with different settings involving Audio Recording)
I am very keen to install the new Ubuntu and get into a new OS, out of interest but I don't want to mess with my current 2 windows installations?…
This is my code. Its giving me an error.
select
b.bill_no as 'Bill Number',
(select descript from SALE_TERMS where STERMS_CODE='99')=b.[99]
from BILLDET as b
We build a system that handling the billing analyse and what it does it just have a raw bill from vendor and process to "common" table and this is using SQL Server 2005 Integration Services.
At the moment, the batch has 300,000 rows and it took about 6 minutes to process. Now, the current spec…
I'm iteration over records and want to create the toggle-options for records but I can't replace the div-id with the records:
<% for bill in @bills %
<% tmp = "test"%
<%= link_to '» now','#', :onclick = '$("#{tmp}").toggle();' %
Instead of getting:
» now
I'm…
Dear All,
I need to parallelize a CPU intensive Java application on my multicore desktop but I am not so comfortable with threads programming. I looked at Scala but this would imply learning a new language which is really time consuming. I also looked at Ateji PX Java parallel extensions…
I've got a number of S3 objects that are available to my customers. Since I'd like to bill my customers by usage, I wondered if there is any smart kind of way to get the number of times a given file has been downloaded?
Alternatively, I suppose I could parse the log files provided by S3,…
Hello, currently I have dual boot with 2 windows 7. (dont ask why, long story, I need them for each with different settings involving Audio Recording)
I am very keen to install the new Ubuntu and get into a new OS, out of interest but I don't want to mess with my current 2 windows…
When I have a JavaScript array like this:
var member = {
"mother": {
"name" : "Mary",
"age" : "48"
},
"father": {
"name" : "Bill",
"age" : "50"
},
"brother": {
"name" : "Alex",
"age" : "28"
}
}
How to count…
Hello,
I have a JSON variable defined as:
var myCollection = {
"data": [
{ "name":"Joe", "id":"1" },
{ "name":"Bill", "id":"2" },
{ "name":"Dave", "id":"3" }
]
};
I have a JavaScript function that is responsible for adding items to the data element in…
Hi, does anyone work on DOC1 designer tool, a Pitney bowes product. We use it at work for bill composition and later used on Mainframes. Please help me in finding out the best career path by means of this. Your help is highly appreciative.
I want to do some metaprogramming in a statically typed language, where both my programs and my meta-programs will be typed. I mean this in a strong sense: if my program generator compiles, I want the type system to be strong enough that only type-correct programs can…
Hi
I don't know how can I return all attributes by RETURNING
I want something like that:
DECLARE
v_user USER%ROWTYPE
BEGIN
INSERT INTO User VALUES (1,'Bill','QWERTY') RETURNING * INTO v_user;
END;
RETURNING * INTO gets error , how can I replace * ?
Have you…
This is my code. Its giving me an error.
select
b.bill_no as 'Bill Number',
(select descript from SALE_TERMS where STERMS_CODE='99')=b.[99]
from BILLDET as b