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
R

Rolando CC

@Rolando CC
About
Posts
60
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • After complete my profile get -250 points
    R Rolando CC

    You are right but was very strange because one of the optionbox got cleared, anyway, my mistake. Tks.

    Site Bugs / Suggestions question announcement

  • After complete my profile get -250 points
    R Rolando CC

    I just update my profile and get -250 points, is that correct? 27 Nov 2013 7:26am -250 Participant Complete a Professional Profile (undo) Member :confused:

    Site Bugs / Suggestions question announcement

  • Singleton Pattern : Using a single dataSet in all over of application.
    R Rolando CC

    I'm not saying that your job is bad. but... I know better ways to do that, LinQ for example is an excelente way to work with data...

    Preparing for 70-536

    C# database question html visual-studio com

  • [Message Deleted]
    R Rolando CC

    Maybe it is based on a GUI object...

    Preparing for 70-536

    C / C++ / MFC

  • Ability to type,paste symbols in the subject of email
    R Rolando CC

    Have you tried using the encoding property? http://msdn.microsoft.com/en-us/library/system.net.mail.mailmessage.bodyencoding.aspx[^]

    Preparing for 70-536

    ASP.NET question

  • get realtime data from website
    R Rolando CC

    It is remote, i don't think so. :doh:

    C# csharp question announcement

  • Custom Wizard: Is it possible to add a dll reference to a project on creation from a custom wizard?
    R Rolando CC

    Maybe Reflection is what you want, google it.

    C# csharp visual-studio wpf question

  • IP Addresses List
    R Rolando CC

    Easy!

    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.DirectoryServices.ActiveDirectory;

    namespace ConsoleApplication1
    {
    class Program
    {
    static void Main(string[] args)
    {
    System.DirectoryServices.DirectoryEntry entry = new System.DirectoryServices.DirectoryEntry("LDAP://yourdomain");
    System.DirectoryServices.DirectorySearcher search = new System.DirectoryServices.DirectorySearcher(entry);
    search.Filter = "(objectClass=computer)";

            foreach (System.DirectoryServices.SearchResult resEntAs in search.FindAll())
            {
                Console.WriteLine(resEntAs.GetDirectoryEntry().Name.ToString());
            }
            Console.ReadLine();
        }       
    }
    

    }

    Now just request for the IP using System.Net.Dns.GetHostByName() :^)

    ASP.NET sysadmin help

  • Ability to type,paste symbols in the subject of email
    R Rolando CC

    Can you be more explained on this? What happen when you paste © on the textbox and send the email? The email is not received? Do you see boxes instead of ©?

    ASP.NET question

  • Problem with setup project
    R Rolando CC

    but during the installation it is not installing automatically that .net framework3.5 forcefully am going to install framework. By default this is the behavior, if your want, create a Setup Project and perform a silent instalation of the components: Some useful webs: http://blogs.msdn.com/astebner/archive/2008/01/25/7249161.aspx[^] http://maaruthi.wordpress.com/2008/04/03/dot-net-framework-123-silent-installations/[^]

    .NET (Core and Framework) csharp dotnet debugging help question

  • How to use a function pointer in C#
    R Rolando CC

    maybe this helps:

    using System;
    using System.Runtime.InteropServices;
    namespace com_example
    {
    class Program
    {
    [DllImport("user32.dll")]
    private static extern int MessageBox(IntPtr hWnd, String
    text, String caption, uint type);

    static void Main(string[] args)
    {
    MessageBox(
    new IntPtr(0), "Hello, world!", "My box", 0);
    }
    }
    }

    C# question help csharp json tutorial

  • how to convert string into code?
    R Rolando CC

    Why are you creating another Thread????? Check the answers you have here http://www.codeproject.com/script/Forums/View.aspx?fid=1649&select=3021931#xx3021931xx[^] IS THERE SOME ADMINISTRATOR OVER HEREEEEEEEEEE???? :mad:

    C# tutorial question graphics

  • Multiple tables from a single DB [modified]
    R Rolando CC

    Typed datasets: http://msdn.microsoft.com/en-us/library/esbykkzb(VS.71).aspx[^] http://www.15seconds.com/Issue/031223.htm[^] Normal datasets: declare the connection... create System.Data.Dataset: Dataset ds=new Dataset(); create OledbDataAdapter: OledbDataAdapter adapter=new OleDbDataAdapter("Select * from table1",conn); Fill ds: adapter.fill(ds,"table1"); USe it....

    C# help database question

  • how to convert string into code?
    R Rolando CC

    It works for me! :-\

    C# csharp tutorial question

  • Multiple tables from a single DB [modified]
    R Rolando CC

    Why are you using typed datasets? Can you use System.Data.DataSet datasets???

    C# help database question

  • Multiple tables from a single DB [modified]
    R Rolando CC

    And which is exactly the problem ???

    C# help database question

  • New features on ASP.NET 4.0
    R Rolando CC

    tks!

    ASP.NET csharp asp-net com

  • Do to detect outlook is running or not in client?
    R Rolando CC

    Something like:

    For Each p As Process In Process.GetProcesses
    If p.ProcessName = "OUTLOOK" Then
    Console.WriteLine(p.ProcessName & " / " & p.MainWindowTitle)
    End If
    Next
    Console.ReadLine()

    .NET (Core and Framework) help tutorial question

  • paint is slow
    R Rolando CC

    Dont use the theme!

    C# question help

  • Getting the server name and SQL instance name [modified]
    R Rolando CC

    I think the Articles section is a better place for this post... This is a forum: questions>answers... Therefore, if you already have the connection string(this.CurrentConnectionString), why make all coding just to extract the server name??? :~

    C# csharp asp-net database sysadmin
  • Login

  • Don't have an account? Register

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