1
vote
4answers
136 views
program c# for 10+(5/3) without using ‘/’ operator [closed]
program c# for 10+(5/3) without using '/' operator
1
vote
9answers
172 views
Can a scope block with the “using” keyword react to exceptions?
Hi everyone,
I have the need to do some logging within my code. I'm required to use an internal company-developed library to record some information. Here's how it works.
Recor …
1
vote
2answers
46 views
validation with asp.net using javascript…
i have to validate listbox for maximum of three items to select by the user...
i have write code that works fine...
but if i'll use the same code in customer validator in asp.net …
7
votes
7answers
301 views
Why doesn’t ‘using’ have a catch block?
I understand the point of "using" is to guarantee that the Dispose method of the object will be called. But how should an exception within a "using" statement be handled? If ther …
-4
votes
0answers
150 views
c++ stack using char [closed]
if i have this record using val = int
struct Istack {
int val;
Istack *link;
};
typedef Istack* stack;
i can declare this function without any errors
void emptyStack(stack …
-1
votes
0answers
63 views
how to create a round/circular button in win32 API using visual c++
I have a Window (win32 API) Application in visual c++. I am not using MFC. I have to create a round/circular button with bitmap image. My application have a skined view. Can any on …
6
votes
5answers
175 views
Difference between ‘using’ and scoping?
What is the difference between the following two snippets of code:
using (Object o = new Object())
{
// Do something
}
and
{
Object o = new Object();
// Do somethin …
0
votes
2answers
40 views
How to pass “using”-type objects to a function?
I have a code that looks like this:
using (DC dc = new DC())
{
f(dc.obj, a);
}
void f(DC dc, int a)
{
...
dc.obj = a;
}
It doesnt work - complains about object ref …
0
votes
1answer
12 views
Excel formating using JXL
I generating a excel sheet using jxl, a number of the columns have data that is
preceeded by a hidden apostrophe. The apostrophe can only be seen when you
click on the cell. I ha …
0
votes
2answers
88 views
ASP.NET MVC - System.Data.DataSet not referenced problem
Hi There,
Well, first of all sorry about this question it must be pretty straight forward for you guys but I'm struggling myself on it, and I need to make it work :(
Well I'm tryin …
0
votes
0answers
22 views
sp_addlinkserver using trigger
Hi All
Please find the following trigger
While trigger is invoking that time the following error is coming
My trigger is
FOR INSERT, UPDATE
AS
IF UPDATE(STATUS)
BEGIN
DECL …
5
votes
2answers
137 views
yield return statement inside a using() { } block Disposes before executing
I've written my own custom data layer to persist to a specific file and I've abstracted it with a custom DataContext pattern.
This is all based on the .NET 2.0 Framework (given co …
11
votes
13answers
489 views
Nested using statements in C#
I am working on a project and have to compare two files and see if they match eachother excatly.
My first draft before alot of error checking and validation came up with:
Direc …
1
vote
2answers
72 views
Problem with using and Stream
I call method in Soap extension which decrypt and verify sing Soap message.
I have this classes:
I have class, which decrypt and verify sign Soap message, which return stream bac …
2
votes
3answers
107 views
Is re-using GDI+ objects bad practice? (or: How to use many nested using blocks without getting headaches?)
I'm currently writing a fairly complex paint method for a user control, involving a fair amount of drawing code. I know that all GDI+ resources need to be properly disposed so I wr …
