How much?
Andres Manggini. Buenos Aires - Argentina.
How much?
Andres Manggini. Buenos Aires - Argentina.
Check that code once again :)
Timothy the lion wrote:
enter r alt+f+s r.bat enter alt+f+x b
Andres Manggini. Buenos Aires - Argentina.
HollyHooo wrote:
what's this supposed to do ? start r enter r
Should be: start b enter b Andres Manggini. Buenos Aires - Argentina.
Yoyosch wrote: how am I supposed to exit from the place 'XXX' so that I would 'land' outside (after) the most internal ('for') loop? Use goto
for(...)
{
foreach(...)
{
if (...)
{
while(...)
{
//-> XXX <-
goto Gotcha;
}
}
}
}
Gotcha:
Console.WriteLine("Gotcha");
Andres Manggini. Buenos Aires - Argentina.
Here. andres . manggini at corhat . com Thanks. Andres Manggini. Buenos Aires - Argentina.
Hi, You can write a sql statement like this returning two tables: "SELECT * FROM People; SELECT * FROM Street;"
That will populate two different tables on your DataSet, the first one containing all the people, and the second one with streets. Hope this helps. Andres Manggini. Buenos Aires - Argentina.
Hi, I would like to know of an advanced log library/component for .NET, something that supports logging to Event Log, File, E-Mail, maybe some realtime console. I'm looking for something robust for .NET. If it's free even better :). Any comments and suggestions are appreciated. (I've seen log4net on sourceforge already) Thanks, Andres Manggini. Buenos Aires - Argentina.
Hi, you are using a case sensitive language, DNS and Dns are not the same thing. System.Net.Dns is the correct name, not System.Net.DNS GetHostName is a static method, that's why Dns::GetHostName(); is the proper syntax. Hope this helps.
Hi, This could help: Add a file named "app.config" to the project and compile your solution. Visual Studio .NET will automagically search for a file with that name (app.config) inside your project and create an output file to bin/debug (in this case), then, if you need to change the contents of that config file, modify app.config and it will be reflected on the output file. If you change the output file (when I say "output file" it means "testapp.exe.config") directly it will be overwritten by VS.NET on the next build. Hope this helps. (if I wasn't clear, please tell me and I will try to be :)) Andres Manggini. Buenos Aires - Argentina.
Hi, Keep in mind that in debug mode your pointer variables are initialized, in release they are not, maybe you are counting on a certain value on a non initialized variable ?. if you can post some code perhaps we can help you more. Andres Manggini. Buenos Aires - Argentina.
stevb wrote: Im sure ive made the description as clear as mud!!! yes :) but FWIW you can't call static methods remotly if that's what you are trying to do. Andres Manggini. Buenos Aires - Argentina.
Hi, Found this two: http://www.codeproject.com/vb/net/databindingconcepts.asp?target=databinding[^] http://www.codeproject.com/useritems/complexdatabinding.asp?target=databinding#xx464131xx[^] Andres Manggini. Buenos Aires - Argentina.
Hi, You will find that in .NET TextEdit, ComboBox, etc.. (pretty much every control) support DataBinding, which would get (kind of) the same functionality. (I don't think TreeView support DataBinding). Hope this helps. Andres Manggini. Buenos Aires - Argentina.
Thanks. I'm thinking dell or toshiba would be safer than Hugebee. Andres Manggini. Buenos Aires - Argentina.
Hi, I found this site www.internetishop.com[^] looking for laptop prices. They have these Hugebee laptop with very low prices, and I would like to know if anybody has any experience with this brand, couldn't find much information from users on google. I'll appreciate any comments or personal experience. Thanks, Andres Manggini. Buenos Aires - Argentina.
Yes, search on "Dynamic Properties", you can bound the Text property of your TextBox to a config file. Hope this helps. Andres Manggini. Buenos Aires - Argentina.
Hi, DataTable.LoadDataRow might work better for you. Hope this helps. Andres Manggini. Buenos Aires - Argentina.
Hi, Try checking more deeply into the InitializeComponent method, probably the editor deleted all initialization code. Hope this helps. Andres Manggini. Buenos Aires - Argentina.
To test if an object implements an interface or derives from a type: if( theObject is ISomething ) { }
or ISomething something = theObject as ISomething;
In the latter something
will set to null if theObject
doesn't support the interface Andres Manggini. Buenos Aires - Argentina.
Hi, Activator.CreateInstance Method[^] Might be what you're looking for. Andres Manggini. Buenos Aires - Argentina.