Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
A

Andres Manggini

@Andres Manggini
About
Posts
165
Topics
9
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Bragging time ...
    A Andres Manggini

    How much?

    Andres Manggini. Buenos Aires - Argentina.

    The Lounge asp-net adobe hardware security business

  • has anyone beet my 34 key press windows crash?
    A Andres Manggini

    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.

    The Lounge question

  • has anyone beet my 34 key press windows crash?
    A Andres Manggini

    HollyHooo wrote:

    what's this supposed to do ? start r enter r

    Should be: start b enter b Andres Manggini. Buenos Aires - Argentina.

    The Lounge question

  • break; instruction
    A Andres Manggini

    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.

    C# question

  • 6 gmail invites
    A Andres Manggini

    Here. andres . manggini at corhat . com Thanks. Andres Manggini. Buenos Aires - Argentina.

    The Back Room

  • More than one table in DataSet
    A Andres Manggini

    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.

    C# question

  • Advanced Log Capabilities ?
    A Andres Manggini

    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.

    C# csharp question

  • System.Net.Dll
    A Andres Manggini

    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.

    .NET (Core and Framework) csharp com sysadmin question lounge

  • Understanding ConfigurationSettings
    A Andres Manggini

    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.

    C# help com debugging question workspace

  • Debugbuild OK! Release build CRASHES! WHY?
    A Andres Manggini

    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.

    C / C++ / MFC c++ debugging question announcement

  • .NET Remoting related question
    A Andres Manggini

    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.

    C# help csharp com tutorial question

  • DataComponents in Visual C#
    A Andres Manggini

    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.

    C# csharp delphi help question

  • DataComponents in Visual C#
    A Andres Manggini

    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.

    C# csharp delphi help question

  • Hugebee laptop
    A Andres Manggini

    Thanks. I'm thinking dell or toshiba would be safer than Hugebee. Andres Manggini. Buenos Aires - Argentina.

    The Lounge com

  • Hugebee laptop
    A Andres Manggini

    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.

    The Lounge com

  • c# change default text at runtime
    A Andres Manggini

    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.

    C# csharp question

  • ImportRow Question
    A Andres Manggini

    Hi, DataTable.LoadDataRow might work better for you. Hope this helps. Andres Manggini. Buenos Aires - Argentina.

    C# question help tutorial

  • C# forms[design]
    A Andres Manggini

    Hi, Try checking more deeply into the InitializeComponent method, probably the editor deleted all initialization code. Hope this helps. Andres Manggini. Buenos Aires - Argentina.

    C# csharp design question

  • System.Type usage
    A Andres Manggini

    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.

    C# question tutorial

  • CType in C#?
    A Andres Manggini

    Hi, Activator.CreateInstance Method[^] Might be what you're looking for. Andres Manggini. Buenos Aires - Argentina.

    C# csharp question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups