all groups > c# > april 2007 > threads for sunday april 22
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
Designing report for internet browser
Posted by gul at 4/22/2007 11:40:46 PM
hi to every one
i have to research how to design reports in the internet browser but i did not really know about it
pls help me its urgent
bye ... more >>
Designing report for internet browser
Posted by gul at 4/22/2007 11:40:28 PM
hi to every one
i have to research how to design reports in the internet browser but i did not really know about it
pls help me its urgent
bye ... more >>
help float converting
Posted by Yasin Cepeci at 4/22/2007 10:13:03 PM
I ve get float data from serial port. I ve taken it in the form of hex by
modbus protocol. I know it is float but I couldnt convert it
there is a few sample data below;
B3 33 43 34 = 180.699997
33 33 43 33 = 179.199997
B3 33 43 34= 180.699997
CC CD 43 33=179.800003
But how can I found it... more >>
Search Text in Multiple Documents
Posted by shantanu at 4/22/2007 9:46:25 PM
Hi All,
I have a requirement to develop a search engine based on
some search criteria that will search for the string or statement in
all the documents uploaded in the website. The search result will be
displayed same as the Google Group search, with highlighted texts.
I have few qu... more >>
Oracle Database Connection Pool - Too many connections being used
Posted by paul at 4/22/2007 8:48:07 PM
Hi
I have a .NET V2.0 Web application that uses Oracle database./
I have started to run load tests and found that 23 Connections to
Oracle open (invactive) for 2 concurrent users.
I am using a database pool (max 50), which gets filled pretty
quickly, I have check the code to ensure that ... more >>
Management Program
Posted by mac at 4/22/2007 8:23:07 PM
I've been writing in c# for a little over a year, now. I'm writing a
program that will provide specific remote management functions using
client/admin type interface (a client listener will receive commands
from admin program, perform the command and return necessary
information).
My questio... more >>
Interface Question
Posted by JasonX at 4/22/2007 2:20:33 PM
Hi,
Im just going through my old exam papers, and have come by a question
that asks to explain how you would use a variable of type IMyInterface
for example given this interface
interface IMyInterface
{
string DoWork();
}
and this class that inherits off it:
class MyClass : IMyI... more >>
readonly
Posted by MikeJ at 4/22/2007 1:57:00 PM
hi i can't seem to find the readonly
for sql
How to set when reading Recordset from Sql
as Readonly
Tia
MikeJ
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
long versus Long?
Posted by Ikke at 4/22/2007 1:55:07 PM
Hi everybody,
Coming from a Java background, I'm used to having a "long" type and a
"Long" Object around...
I've recently started a simple, small C# project, and I'm looking for a way
to pass a long value to a method, which only accepts an Object. Logically,
I can't pass the long value s... more >>
String Encryption Help
Posted by j1mb0jay at 4/22/2007 1:54:55 PM
I have had to create a simple string encryption program for coursework, I
have completed the task and now have to do a write up on how it could be
improved at a later date. If you could look through the code and point me in
the correct direction one would be very grateful.
Example Input : j... more >>
Make datatable data available to other functions (novice)
Posted by DubSport at 4/22/2007 12:42:46 PM
I have created a datatable in a function, and it is populated with
data. I want to call a new function from an ASP button, and write out
some of the values in the datatable, using:
string RowValue;
RowValue = dt.Rows[0][1].ToString();
Response.Write(RowValue);
Now whe... more >>
Programming the Vista DVD maker
Posted by Michael A. Covington at 4/22/2007 11:42:53 AM
Does Windows Vista include the ability to turn an .avi file (or a collection
of them) into a playable video DVD? If so, can this be done under the
control of a C# program?
... more >>
Incorrect instance in .NET 2.0 Form Shown event
Posted by Victory at 4/22/2007 11:42:05 AM
i am using the Shown event for a form. It is in .NET 2.0. It is an event
that occurs when a form is displayed. I wanted to use this event since i
needed the processing of data to occur after the form is displayed. To
use it, i had to wire this even to the form: this.Shown += new
EventHandler(my... more >>
reflection and bindingflags
Posted by billsahiker NO[at]SPAM yahoo.com at 4/22/2007 6:42:24 AM
How can I use reflection to inspect any assembly and get only the
methods written by the developers of the assembly, not all the built-
in methods. When I use GetMethods on the Module, it returns all the
built-in methods, so for a Form, I get
get_autosize, get_autoscroll, which I do not want. H... more >>
Help with oracle reader (vsnet2005)
Posted by Tony at 4/22/2007 12:00:00 AM
Using vsnet2005
In the code below, I don't really need the two commented out dateTime
variables there, but my question is, if the fields in oracle is null,
why would it not just set the variable to null?
I get an exception "No data exists for the row or column."
Also, the Status field (whi... more >>
str( number, width, presicion) function
Posted by Andrus at 4/22/2007 12:00:00 AM
How to implement function
string Str( float number, ushort width, ushort presicion)
should return string whose size if width characters, left padded by spaces
and having presicion characters after decimal point using current culture
decimal
separator.
Andrus
... more >>
Form - Prevent Flicker when changing Opacity
Posted by Jeff Williams at 4/22/2007 12:00:00 AM
I have a form with several tabs and I want to dynamically change the
opacity of it while shown. Is there a way to stop the form updating on
screen until all controls have change opacity then allow the form to
display.
Lookings for something like
this.SuspendUpdate
then
this.Restor... more >>
String literal in multiple lines
Posted by Andrus at 4/22/2007 12:00:00 AM
I have long single line string literals containing " characters in code like
switch (expr) {
case @"IR(""xxx"")+sql('sele tasudok from dok x where
doktyyp+str(dokumnr,7)= ""G""+str(dok.krdokumnr,7) ','')":
For code readability I need to split them to multiple lines so that vlaue
remain... more >>
|