all groups > dotnet general > december 2003 > threads for saturday december 13
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 31
Is is possible to get multiple files into a single print job??
Posted by imabuttsniffa NO[at]SPAM yahoo.com at 12/13/2003 11:23:08 PM
I'm needing to get X number of files (.txt,.doc,.xls,.tiff,.pdf) into
a single Print Job.
The idea here is that a user searches for criteria in a system and
then builds a batch of documents that need to be printed together (so
that no one else on the network can slip in anything until this job... more >>
Fade from one Panel to the other
Posted by robertskidz NO[at]SPAM msn.com at 12/13/2003 7:57:37 PM
I am building an application that will fade one panel to another
panel. Both panels will have picture boxes in them (thumbnails).
This is what I have tried:
private void fade(System.Windows.Forms.Panel fP){
for (int i = 255; i >= 0;i--){
System.Threading.Thread.Sleep(10);
fP.BackColor = ... more >>
How Do I: convert a String to Byte[]
Posted by Russell Mangel at 12/13/2003 4:58:23 PM
// Need help converting String to Byte[]
// How do I get this String in a Byte Array
String strBytes = "FFD9FFD8";
// Like this...
Byte[] Bytes = {0xFF, 0xD9, 0xFF, 0xD8};
// This is no good, as it converts each character to hex
System.Text.ASCIIEncoding ascii = new System.Text.ASCIIEnco... more >>
adjusting the Form size
Posted by Alexia at 12/13/2003 4:53:51 PM
Hi,
just a quick question
How do i make sure that the form shown is the size of my
screen. i.e i want the form size to adjust to the
resolution that is set on my monitor.... more >>
what kind of exception to use
Posted by codymanix at 12/13/2003 2:38:03 PM
I have a class and some of its operations are not valid under certains
cercumstances. what if the user clicks on the button which lauches this
operation?
Should I use InvaldoperationException or should I derive my own Exception
from System.ApplicationException? Iam not sure what to do.
--
... more >>
Installing Visual studio .Net in another PC
Posted by Andy at 12/13/2003 10:37:27 AM
Hi,
I bought and installed visual studio .net professional
Version 2002 Academic edition a year back.
I would like to install the same in my new PC.
How do I do that?
-Appreciate your response
Andy... more >>
Convert VB.NET project files to an exe format
Posted by Sriram at 12/13/2003 9:16:28 AM
Hi,
i am developing an windows based VB.NET application.
I want to convert this project to an .exe format so that i
can run this application on any system. I have no clue as
how to do it, as it is done in VB.6.
Any suggestion regarding this would be highly appreciated.
thanks,
-sriram... more >>
Displaying icons for registered file types
Posted by Gwyn at 12/13/2003 6:43:50 AM
Howdy. In my vb.net application I want to populate a
listview with a list of files but I also want to show the
icon for those files according to the registered file
types on the user's computer, e.g. if I list a file with
a .doc extension I want a pretty Word icon next to it....
But how d... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
|