You are right but was very strange because one of the optionbox got cleared, anyway, my mistake. Tks.
Rolando CC
Posts
-
After complete my profile get -250 points -
After complete my profile get -250 pointsI 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:
-
Singleton Pattern : Using a single dataSet in all over of application.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
-
[Message Deleted]Maybe it is based on a GUI object...
Preparing for 70-536
-
Ability to type,paste symbols in the subject of emailHave you tried using the encoding property? http://msdn.microsoft.com/en-us/library/system.net.mail.mailmessage.bodyencoding.aspx[^]
Preparing for 70-536
-
get realtime data from websiteIt is remote, i don't think so. :doh:
-
Custom Wizard: Is it possible to add a dll reference to a project on creation from a custom wizard?Maybe Reflection is what you want, google it.
-
IP Addresses ListEasy!
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() :^)
-
Ability to type,paste symbols in the subject of emailCan 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 ©?
-
Problem with setup projectbut 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/[^]
-
How to use a function pointer in C#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);
}
}
} -
how to convert string into code?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:
-
Multiple tables from a single DB [modified]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....
-
how to convert string into code?It works for me! :-\
-
Multiple tables from a single DB [modified]Why are you using typed datasets? Can you use System.Data.DataSet datasets???
-
Multiple tables from a single DB [modified]And which is exactly the problem ???
-
New features on ASP.NET 4.0tks!
-
Do to detect outlook is running or not in client?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() -
paint is slowDont use the theme!
-
Getting the server name and SQL instance name [modified]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??? :~