Search Results

Showing results 1 to 40 of 1000
Search took 0.10 seconds.
Search: Posts Made By: ddanbe
Forum: C# 22 Minutes Ago
Replies: 2
Views: 15
Posted By ddanbe
Could you send in the code you already have?
Forum: C# 27 Minutes Ago
Replies: 1
Views: 32
Posted By ddanbe
Hi Dekken, welcome here!
perhaps you could use the DoubleBuffered property of the form by setting it to true.
Forum: C# 1 Day Ago
Replies: 2
Views: 69
Posted By ddanbe
No problem:)
Depends indeed.
If I have 2 or 3 buttons and some other controls, I let the IDE do his work. But in a case of 26 or more buttons it pays off to create them manually in a loop, so I...
Forum: C# 1 Day Ago
Replies: 8
Views: 158
Posted By ddanbe
Please RunTimeError post your question again in a new thread!!!
Solved threads are not intended to continue with another subject.
Forum: C# 1 Day Ago
Replies: 14
Views: 236
Posted By ddanbe
Sorry I'm not so fluent as it comes to databases. Perhaps start a search in C# forum search? You find it on the right side of the site window under RELATED FORUM FEATURES. Succes!
Or else, I know...
Forum: C# 1 Day Ago
Replies: 14
Views: 236
Posted By ddanbe
You can't display something in a GroupBox control. As DdoubleD already pointed out you can change the Text property. So you could change the phrase English equivalent into 'aso-dog' if you like....
Forum: C# 2 Days Ago
Replies: 14
Views: 236
Posted By ddanbe
When you reply, click advanced and scroll down. You will notice a button Manage Attachements click on on it, click on Browse to select your picture, then click on the upload button.
Fill in your...
Forum: C# 2 Days Ago
Replies: 9
Views: 190
Posted By ddanbe
Although the layout could be better, this (http://www.codeproject.com/KB/cs/codesamples.aspx) should do the trick.
Forum: C# 2 Days Ago
Replies: 8
Views: 137
Posted By ddanbe
Did you also check your references?
Forum: C# 2 Days Ago
Replies: 8
Views: 137
Posted By ddanbe
Put your Karyawan class in the RestaurantSoftClassLib namespace not in the RestaurantSoftClassLib.Karyawan namespace.
Forum: C# 2 Days Ago
Replies: 8
Views: 158
Posted By ddanbe
If I where you I should never delete the designer file. Consider it as a file that must be there as long as you are developing.
Take this test: create a forms app, put a button(whatever) on the...
Forum: C# 2 Days Ago
Replies: 8
Views: 137
Posted By ddanbe
The confusion comes from the fact that Karyawan is a namespace which contains a class with the name Karyawan.
If you have a namespace A with classes A and B, you would also say A.A and A.B
Forum: C# 2 Days Ago
Replies: 8
Views: 158
Posted By ddanbe
Also notice the concept of a partial class. The X.cs and X.designer.cs files form the same class but are marked partial so they can be stored separately. You should in general not change the contents...
Forum: C# 3 Days Ago
Replies: 14
Views: 236
Posted By ddanbe
What do you mean by groupbox here?
A groupbox control is meant to group other controls, most of the time radiobuttons.
Forum: C# 3 Days Ago
Replies: 10
Views: 219
Posted By ddanbe
Every application under .NET gets compiled to IL (intermediate language) This is some sort of assembly language, yuo can see how it looks if you use the ILDASM tool. This IL gets executed by the...
Forum: Geeks' Lounge 3 Days Ago
Replies: 295
Views: 20,342
Posted By ddanbe
Listening to The Smashing Pumpkins!
:icon_lol:
Forum: C# 4 Days Ago
Replies: 2
Views: 122
Posted By ddanbe
The BitMap class has a SetPixel method.
Call it like this SetPixel(x,y,aColor);
x,y : coordinates in int.
aColor : Color
Forum: C# 4 Days Ago
Replies: 2
Views: 153
Posted By ddanbe
Hi, welcome to DANIWEB!
Perhaps look at this thread http://www.daniweb.com/forums/thread224213.html may help.
This site also has a search function with perhaps lots of more information.
Forum: C# 5 Days Ago
Replies: 1
Views: 166
Posted By ddanbe
Hi welcome on DANIWEB!

Person Michael = new Person(Console.ReadLine());
But then you must have a constructor in your class Person that accepts a string: Person(string Name);
Forum: C# 5 Days Ago
Replies: 12
Views: 250
Posted By ddanbe
What is the part you are having trouble with? its not workin right is a bit vague as a question.
Forum: C# 7 Days Ago
Replies: 3
Views: 183
Posted By ddanbe
Use this:
dateTimePicker1.Value = dateTimePicker1.Value.AddDays(2.0);
Forum: C# 7 Days Ago
Replies: 5
Views: 177
Posted By ddanbe
You might consider a tab control.
Forum: C# 8 Days Ago
Replies: 17
Views: 2,412
Posted By ddanbe
Is this a question? demand? requisition? ultimatum?
Please post this in a new thread.
Forum: C# 8 Days Ago
Replies: 5
Views: 223
Posted By ddanbe
Most of the time you don't have to bother about operator overloading in C#. The compiler is even smart enough to figure out that a string + an integer ends in a string with the number appended. The...
Forum: C# 8 Days Ago
Replies: 5
Views: 274
Posted By ddanbe
Fine to hear that, so mark this thread as solved.
Forum: C# 8 Days Ago
Replies: 5
Views: 223
Posted By ddanbe
Hi sumit21amig, welcome!
Don't know what you are getting at here. * ALWAYS takes precedence over +. That is just standard math. The formulas you give will only have the same result if a,b and c have...
Forum: C# 8 Days Ago
Replies: 8
Views: 210
Posted By ddanbe
Happy to hear you solved your problem :)
Forum: C# 9 Days Ago
Replies: 8
Views: 210
Posted By ddanbe
I tried this code and it works:
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
ArrayList TestArrayList = GetData(); ...
Forum: C# 9 Days Ago
Replies: 8
Views: 210
Posted By ddanbe
Could you show us the code of GetData?
Forum: C# 9 Days Ago
Replies: 3
Views: 253
Posted By ddanbe
Hello Maheed, welcome on this site.
Seems like you where trying to start what is called a Console application. You have to put as a last line of code a "read" statement, so that the console window...
Forum: C# 9 Days Ago
Replies: 11
Views: 358
Posted By ddanbe
Please show us your updated code. Just from a statement that it is still wrong we can infer little...
Forum: C# 10 Days Ago
Replies: 5
Views: 274
Posted By ddanbe
Hi Sachin_coder, welcome at DANIWEB:)
Your catch clause doesn't return anything, that's what caused your error. Either return someting or throw an exception.
Please use code tags, the next time you...
Forum: C# 10 Days Ago
Replies: 3
Views: 215
Posted By ddanbe
Perhaps use the NLST command instead?
You could also use methods from the string class like SubString, Length etc.
You could use the string Split method and split on a space character. The last...
Forum: C# 10 Days Ago
Replies: 10
Views: 230
Posted By ddanbe
Java,yes:yawn: Life can be hard sometimes when you are a C# programmer. But if I were you I would go searching the net for algorithms. Even if they where written in Klingon, I would start to learn...
Forum: C# 10 Days Ago
Replies: 11
Views: 358
Posted By ddanbe
The 2 errors have the same cause. You are trying to compare a string with an int. You can compare strings with strings or ints with ints. The last error tells you, you are trying to assign a string...
Forum: C# 10 Days Ago
Replies: 10
Views: 230
Posted By ddanbe
Perhaps I forgot to copy some chars, so here it is again:http://ubicomp.algoritmi.uminho.pt/local/concavehull.html
I tested it and it works, hope it works with you guys also.
Forum: C# 10 Days Ago
Replies: 10
Views: 230
Posted By ddanbe
Perhaps this site (http://ubicomp.algoritmi.uminho.pt/local/concavehull.htmlis) something to consider.
Forum: C# 10 Days Ago
Replies: 4
Views: 235
Posted By ddanbe
You must first learn to crawl before you start to walk.
Start to learn the difference between a Console application and a Windows Forms application. The code you posted is console code, you talk...
Forum: C# 11 Days Ago
Replies: 13
Views: 355
Posted By ddanbe
LOL
Could be you left it in just to see how awake I was:D
Anyway, thanks again Scott and Diamonddrake for your answers and support.
Forum: C# 11 Days Ago
Replies: 13
Views: 355
Posted By ddanbe
The master at work once again!
Thanks Scott. One thing I don't get : You override the OnPaint method in your BlinkingPanel class, just to call it's base implementation, why is that?
Showing results 1 to 40 of 1000

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC