all groups > c# > recent posts
RE: Import Email Contacts
Posted by Pat at 8/10/2010 1:01:10 AM
you can use this component with .Net, c# and VB.. http://www.socialcontactsimporter.net Worked on our web site like a dream and works with all the major providers, Hotmail, Gmail, Yahoo, Outlook, Outlook Express, Firefox and so on..
We tried a number of ways even creating our own but was no good ... more >>
RE: License system
Posted by LogicNP at 7/19/2010 11:14:21 PM
Use a ready made license system like CryptoLicensing (http://www.ssware.com/cryptolicensing/cryptolicensing_net.htm) - this is cryptographic and secure.
From http://www.developmentnow.com/g/36_2008_4_0_0_1057422/License-system.htm
Posted via DevelopmentNow.com Groups
http://www.developmentnow.co... more >>
RE: Start remote app visible
Posted by Ajay at 7/14/2010 1:59:39 PM
I am opening the same user session on the remote machine still i am not able to see the running application.
Can you please help me how to make it visible.
Note* I am using the same user which is used in the remote desktop.
Thanks
Ajay
From http://www.developmentnow.com/g/36_2005_3_0_0_... more >>
RE: question: XML documentation and compiler flags
Posted by LaIN at 7/13/2010 3:56:04 PM
In MonoDevelop Project->Options->Build->Compiler (or sth like that) In Russian: ??????->Options->??????????->??????????->???????????? ???????????? ? ????? XML
From http://www.developmentnow.com/g/36_2004_12_0_0_33183/question-XML-documentation-and-compiler-flags.htm
Posted via DevelopmentNow.com G... more >>
RE: How to protect C# code?
Posted by LogicNP at 7/9/2010 10:26:58 PM
Normal assemblies can be easily decompiled using the free .Net Reflector. But if you obfuscate your assemblies, it is much harder (almost impossible) for Reflector to work. Crypto Obfuscator ( http://www.ssware.com/cryptoobfuscator/obfuscator-net.htm ) will do good obfuscation on your .net exes and ... more >>
RE: Detecting OS ? (mono/.NET)
Posted by kgcode at 6/17/2010 3:38:45 PM
In Mono 1.x, the Platform property of OperatingSystem contained 128, because there was no PlatformID.Unix. In Mono 2.x, the PlatformID.Unix was added (with an enumeration value of 4). So, if the code needs to run in both 1.x and 2.x Mono environments, the code should check for both values: 128 (fo... more >>
RE: Delete Rows from a TableLayoutPanel
Posted by Peter Voutov at 6/16/2010 8:22:59 PM
I know it's 2010... Shame on me for using Winforms :)
I needed to do this too. The last post was very helpful, but the author didn't post any code. I wrote an extension method (you can just as easily write it as a regular method and pass in a TableLayoutPanel, but this way it's more sexy).
To ... more >>
RE: Scrolling Large Text File Without Hogging Memory
Posted by Matt at 5/26/2010 9:18:22 AM
Hi Tom
Did you get around to solving this problem? I have a similar issue that I need to tackle with the variance that it needs to be a text editor. Could you provide me more insight on how you tackled this issue in c#?
Thanks a bunch!
Matt
From http://www.developmentnow.com/g/36_2007_12_0_0... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Drawing Board (White Board)
Posted by chandrahas tripathi at 5/26/2010 2:57:42 AM
Hi,
I want to create drawing board application that can draw Line, rectagle,
circle and free hand drawing.
Each drawing need to be transparent, moveable (draggable), have bring to
front and send to back feature etc.
How can I do this .. where should I start?
Right now I have used a pan... more >>
RE: FileSystemWatcher and open files
Posted by Pranav at 3/30/2010 10:44:02 PM
It works fine for MSOffice files like doc,xls etc but it failed on txt, pdf or other extension file.
From http://www.developmentnow.com/g/36_2008_2_0_0_1051091/FileSystemWatcher-and-open-files.htm
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com/g/... more >>
RE: PreTranslateMessage
Posted by pradeep at 3/24/2010 4:19:26 AM
is there pretranslate message equilent in C#
From http://www.google.co.in/search?hl=en&q=pretranslatemessage+in+C%23+only&meta=&aq=f&aqi=&aql=&oq=&gs_rfai=
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com/g/... more >>
RE: TextBox in FormView Insert Template
Posted by DhawalSeth at 3/8/2010 2:47:36 AM
thanks buddy.
From http://www.developmentnow.com/g/36_2007_8_0_0_1002004/TextBox-in-FormView-Insert-Template.htm
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com/g/... more >>
RE: hide public property in propertygrid
Posted by Troopers at 3/4/2010 8:24:47 AM
Thanks Marc for your sample to set the current folder and the caption.
It's exactly the code which i need
From http://www.developmentnow.com/g/36_2008_4_0_0_1057524/hide-public-property-in-propertygrid.htm
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com/g/... more >>
ToolboxItems.Add does nothing
Posted by Jolly George at 3/2/2010 4:02:31 AM
DTE DesignTimeEnvironment;
// Create an instance of the VS IDE,
Type type = System.Type.GetTypeFromProgID("VisualStudio.DTE.8.0");
DesignTimeEnvironment = (DTE)System.Activator.CreateInstance(type, true);
string toolboxTabName = ... more >>
RE: Determining the current global cursor
Posted by ERCAN ÇETIK at 2/26/2010 7:20:44 AM
hELLO
From http://www.google.com.tr/search?hl=tr&q=C%23+"find+handle"+"global+cursor"&meta=&aq=f&oq=
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com/g/... more >>
RE: Simple Input Dialog
Posted by Oronno at 2/26/2010 6:30:21 AM
When I working with C# GUI Programming, I astonished by finding that there is no "simple input dialog box" option in C# like in java: JOptionPane.showInputDialog()
If you still need a Simple Input Dialog Box, then add SimpleInputDialog.cs file to ur project, found here: http://www.oronno.co.cc/C... more >>
RE: OpenFileDialog that can select folders?
Posted by LogicNP at 2/23/2010 12:06:15 AM
The FolderView control (http://www.ssware.com/fldrview.htm) supports what you want to do. Its a control so it can be placed on your own form so that it blends with the rest of your UI look.
From http://www.developmentnow.com/g/36_2006_2_0_0_690611/OpenFileDialog-that-can-select-folders.htm
Poste... more >>
RE: BlueTooth in .NET
Posted by Zman at 2/18/2010 1:35:50 PM
I need to development a windows application(C# .net based) to do bluetooth connectivity. I am wonderfering if the MS blue tooth SDK supports C# code (not importing C++ DLLs) .NET codes. Thanks.....
From http://www.google.com/url?sa=t&source=web&ct=res&cd=9&ved=0CB8QFjAI&url=http://www.developmentno... more >>
RE: TcpClient buffer size limit?
Posted by parikshit at 2/12/2010 1:58:16 AM
you must check in do while loop step bye step..while collecting the data .
when data will be finished from the any side attached one flag then check in while loop that flag is here or not then you will under-stand data coming process finished.
...
if this not done do it in file write the data in... more >>
RE: "cannot explicitly call operator or accessor"
Posted by Hardik at 2/10/2010 1:42:38 AM
write this
this.odbcConnection1.ConnectionTimeout = 1000;
Now it will not give u an error...
From http://www.developmentnow.com/g/36_2005_4_0_0_509922/cannot-explicitly-call-operator-or-accessor.htm
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com/g/... more >>
RE: FTP Upload using FtpWebRequest problem PLEASE HELP
Posted by Aashish at 1/12/2010 7:17:33 AM
I also had same problem, but I figured out, where is problem. I just used Fileupload.postedFile as Stream to read.
[Code]
string ftpfullpath = "ftp://" + ftphost + "/" + Path.GetFileName(inputfilepath);
//Create FTP request
FtpWebRequest ftp = (FtpWebRequest)FtpWebRequest.Create(new Uri(ftpful... more >>
RE: Finding Min and Max value of Column in Dataset
Posted by dsfsfsdf at 1/9/2010 2:39:30 AM
fdsfdffs
From http://www.google.co.in/url?sa=t&source=web&ct=res&cd=2&ved=0CA4QFjAB&url=http://www.developmentnow.com/groups/post.aspx?newsgroupid=36&threadid=205541&rct=j&q=MyDataTable.Comupte("MAX(ColumnValue)",+"ColumnValue+>=+0")&ei=qFxIS8yJNYuTkAWpu6n3Ag&usg=AFQjCNEGcbv9jTjkjSo7mM_2B30wKs8SyA
... more >>
RE: Directory and file list box
Posted by LogicNP at 1/6/2010 11:47:51 PM
As a flexible and more customizable alternative to the modal file dialogs, you may also consider using controls such as Shell MegaPack (http://www.ssware.com/megapack.htm).
From http://www.google.co.in/url?sa=t&source=web&ct=res&cd=6&ved=0CBkQFjAF&url=http://www.developmentnow.com/groups/post.asp... more >>
RE: Location of Context Menu in Listview
Posted by JB at 12/10/2009 1:34:10 PM
For anyone googling this link there is a simpler way which is to build the complete context menu with all options using the Designer in VS and the control the visibility of the item before it is displayed, as follows:
private void contextMenuStrip1_Opening(object sender, CancelEventArgs e)
... more >>
RE: WinRAR or WinZip
Posted by Raghavendra at 11/23/2009 12:45:04 AM
How to call up WinRAR or WinZip to compress and Decompress files without bring up WinRAR or WinZip windows?
Just like the "Extract here" if you right click an rar/zip file
From http://www.google.co.in/search?hl=en&source=hp&q=How+to+call+up+WinRAR+or+WinZip+to+decompress+files+without+bring+up+... more >>
RE: Obscuring .NET code
Posted by LogicNP at 11/20/2009 10:08:52 PM
Take a look at Crypto Obfuscator ( http://www.ssware.com/cryptoobfuscator/obfuscator-net.htm ) which offers good obfuscation and protection against decompilers such as Reflector as well as dissassemblers, ILDASM, debuggers, profilers, etc.
From http://www.google.co.in/url?sa=t&source=web&ct=res&c... more >>
RE: FileSystemWatcher Question
Posted by sathish at 11/20/2009 2:04:27 AM
public static void Main ()
{
Run();
//Just add this below line...
Console.Read();
}
From http://www.developmentnow.com/g/36_2005_10_0_0_621669/FileSystemWatcher-Question.htm
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com/g/... more >>
RE: difference between plugin pattern and factory pattern
Posted by Perumal Babu at 11/19/2009 10:05:05 PM
The difference between the plugin and factory is that the plug is cofiguration driven. But Factory is code driven. In a factory you normally have a condition statement that decide which instance to create.
From http://www.developmentnow.com/g/36_2008_2_0_0_1051360/difference-between-plugin-pattern-... more >>
RE: How to convert a structure to byte array.
Posted by prem at 11/7/2009 2:52:10 AM
Hi,
I have a Byte array in which , different structures are placed back to back
in contiguously.
Now I need to split this byte array into different structures.
Right Now I am using "memcpy" for parsing. But I would like to have custom function
for converting this byte array into desired st... more >>
RE: Counting the number of subscribers to a controls events
Posted by piyush kashyap at 11/4/2009 12:54:46 PM
enter teh value
From http://www.google.co.in/search?q=how+to+cancel+combobox+selectedindexchanged+c%23&hl=en&sa=2
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com/g/... more >>
|