Forum: C# Sep 6th, 2008 |
| Replies: 6 Views: 536 Without giving the answer, you will need to print lineCount number of lines. If you loop and print say lineCount number of '*' starting with lineCount being 10 and you count down to 0 you would get... |
Forum: C# Nov 8th, 2006 |
| Replies: 6 Views: 23,108 This will open multiple forms of the same class, keeping track of where the last one was closed and opening the new ones there plus an offset.
class mychildforms
{
public in x,y;
public... |
Forum: C# Nov 8th, 2006 |
| Replies: 6 Views: 46,017 Think of it this way, c# codebehind runs on the server not on the client. I can do things with the html document, sniff the request for variables and such but you cant execute client side scripts via... |
Forum: C# Nov 8th, 2006 |
| Replies: 2 Views: 3,788 You wont be able to "see" the usb on the client because the codebehind is run on the server. |
Forum: C# Nov 8th, 2006 |
| Replies: 1 Views: 2,426 in your dataadapter do
OleDBDataAdapter da = new OleDBDataAdapter("select tbl1.name, tbl2.address from table1 tbl1, table2 tbl2 where tbl1.id = tbl2.id", conn);
From there, you can do a... |
Forum: C# Nov 8th, 2006 |
| Replies: 5 Views: 23,916 Access doesnt have transactional and stored proc support and I really really really think you should migrate to MSDE aka SQL express. But if you have to use Access....
[ripped off MSDN]
... |
Forum: C# Nov 8th, 2006 |
| Replies: 1 Views: 5,783 Need more info.
I assume (hah) you are using List. This would make it so much easier for you.
List<byte> mybytes = new List<byte>();
mybytes.add(dabyte);
You can then lay down the foreach
... |
Forum: IT Professionals' Lounge Oct 4th, 2004 |
| Replies: 11 Views: 5,369 I got a job through my co-op with my college as a trainer at a well known financial firm. It was the proverbial foot in the door.
I applied for jobs in my senior year, everywhere. I got a call... |
Forum: Computer Science Oct 4th, 2004 |
| Replies: 12 Views: 7,601 First and foremost, a formal education is required for most jobs. A two year degree with certifications ( like Chubb or what ever ) would be the minimum to start off with. I am mostly self taught but... |
Forum: Computer Science Oct 4th, 2004 |
| Replies: 1 Views: 5,264 If you are using windows 2K/NT/XP use the net time command in a batch file. You have to put several parameters in and a little knowledge of NTP (Network Time Protocol) is helpful.
An example goes... |
Forum: Pascal and Delphi Oct 2nd, 2004 |
| Replies: 8 Views: 5,142 Ahh the good 'ol days!
So the most fancy way to do this would be to use recursion.
function ulam(i: integer): integer;
var
x: integer;
begin
if i = 1
then |
Forum: C++ Jul 3rd, 2004 |
| Replies: 12 Views: 26,594 Round Robin is well documented on the Internet. Why? Because it is one of the fundamental algorithms used in OS development, network switching, load balancing, etc.
Getting the Code will not help... |
Forum: C Jul 3rd, 2004 |
| Replies: 2 Views: 14,311 Well first off 60+30+30+30+10 does not equal 100 so its kind of hard to say that SMILES HEARTS AND ARCHERS happen 30% of the time.
Group them into the 30% and then pick one out of the 3.
This... |
Forum: Networking Hardware Configuration Jan 4th, 2004 |
| Replies: 50 Views: 78,268 They do block. I have changed my ports and use a dns service to get around this.
Lets say you changed the port of your web server to 11111.
Set your linksys router to port forward 11111 to that... |
Forum: Windows NT / 2000 / XP Jan 4th, 2004 |
| Replies: 2 Views: 4,680 MS has heard everyone saying that the OS is unsecure so they 'secured' it out of the box.
I think this post may help :
http://www.daniweb.com/techtalkforums/showthread.php?p=6404#post6404
... |
Forum: IT Professionals' Lounge Jan 4th, 2004 |
| Replies: 17 Views: 11,653 Well, in my 10 years in the workforce, one thing stands out. I am glad I got a BS in Comp Sci!
Most of my co-workers have gotten BA or BS in Information Technology and such or have gotten... |
Forum: C++ Oct 12th, 2003 |
| Replies: 4 Views: 4,973 Seems straight forward to me. This is more academic than anything. You wouldn't do it in real life.
You will wind up with 11 functions like
string somefunc()
float somefinc(int a)
float... |
Forum: Networking Hardware Configuration Oct 6th, 2003 |
| Replies: 3 Views: 5,206 I am going to assume that you can see the machine when you browse the network from Windows explorer and all machines are XP/Windows 2000. If you cant see them, then there may be other issues.
So... |