all groups > c# > recent posts
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 >>
Don't see what you're looking for? Search DevelopmentNow.com.
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 >>
RE: Adding a control from a different AppDomain... how?
Posted by Patrick at 11/2/2009 4:50:14 PM
How do you get the plugin to be in the main UI?
When I try to add the plugin control to the main UI controls list I get an exception that says the field 'parent' is not accessable.
This is because the control is being remoted.
From http://www.developmentnow.com/g/36_2008_1_0_0_1048063/Adding-... more >>
RE: How to convert a structure to byte array.
Posted by Prem at 10/31/2009 12:37:30 AM
I have structure as follows:
struct data {int no; string name; int id};
I am converting this structure into bytearray. I need to convert this back into structure format. For that I need to convert first members into integer and string. How to convert bytearray into structure ?
Posted vi... more >>
RE: How to convert a structure to byte array.
Posted by Prem at 10/31/2009 12:32:58 AM
I have structure as follows:
struct data {int no; string name; int id};
I am converting this structure into bytearray. I need to convert this back into structure format. For that I need to convert first members into integer and string. How to convert bytearray into structure ?
Posted vi... more >>
RE: consolidating my events
Posted by dfssd at 10/30/2009 2:28:23 AM
sfsdfds
From http://www.google.com/search?hl=en&rlz=1R2RNTN_enRS335&q=protected+void+Calendar1_SelectionChanged(object+sender,+EventArgs+e)&start=10&sa=N
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com/g/... more >>
RE: How to convert a structure to byte array.
Posted by prem at 10/30/2009 12:05:18 AM
static void ByteArrayToStructure(byte [] bytearray, ref object obj)
{
int len = Marshal.SizeOf(obj);
IntPtr i = Marshal.AllocHGlobal(len);
Marshal.Copy(bytearray,0, i,len);
obj = Marshal.PtrToStructure(i, obj.GetType());
Marshal.FreeHGlobal(i);
}
when i try to use the above... more >>
RE: dataset cloning
Posted by muslumaslan@windowslive.com at 10/28/2009 12:51:29 PM
RE: dataset cloning
From http://209.85.229.132/search?q=cache:yx0dtHakm94J:www.developmentnow.com/groups/post.aspx?newsgroupid=36&threadid=16602+karamail+blog&cd=55&hl=tr&ct=clnk&gl=tr
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com/g/... more >>
siittt
Posted by a-yildiz@hotmail.de at 10/28/2009 12:48:22 PM
ne yapiyorsun
From http://209.85.229.132/search?q=cache:yx0dtHakm94J:www.developmentnow.com/groups/post.aspx?newsgroupid=36&threadid=16602+karamail+blog&cd=55&hl=tr&ct=clnk&gl=tr
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com/g/... more >>
Problem using switch/case with radio buttons in C#
Posted by Jordan Parmley at 10/27/2009 10:01:22 PM
Hi,
I'm having a problem doing a switch/case statement for my radio button(s). The gist of the program is to have the user select any two radio buttons from 2 group boxes with 10 radio buttons in each group box. The user picks 1-10 on how good the quality of the product was, then the program wi... more >>
RE: platform dependent calls and environment detection
Posted by Jeff at 10/27/2009 10:53:56 AM
I just ran into a need for this - and the above post was very helpful.
My situation is that my UI is written in C#, but uses an old legacy C++ library for most of the actual data processing. Problem is that a Win32-native C++ library can't be used in a 64-bit process - and refactoring the C++ to... more >>
RE: HTML Email
Posted by a at 10/15/2009 4:01:23 PM
qqqqqqqqqqqqqqqqqqqqqqqqqq
From http://www.google.lk/url?sa=t&source=web&ct=res&cd=6&ved=0CCQQFjAF&url=http://www.developmentnow.com/groups/post.aspx?newsgroupid=36&threadid=720464&rct=j&q=message.BodyFormat+=+MailFormat.Html;&ei=_qjXSuHxApKWkAWD6NDWCA&usg=AFQjCNFidqdw7UDwl0FEDdxD_YrHJN2Ikw
Posted... more >>
RE: two objects contain same stream?
Posted by vali_sarlak at 10/14/2009 3:58:23 AM
please help me 4 write a dbf file
From http://www.google.com/url?sa=t&source=web&ct=res&cd=5&ved=0CBMQFjAE&url=http://www.developmentnow.com/groups/post.aspx?newsgroupid=36&threadid=194450&rct=j&q=BinaryWriter+dbf&ei=Uq7VSqOSGMj9_Ab47qDZAg&usg=AFQjCNERnvq4ZQJXAPyrskCUqNSjHHop7w
Posted via Developm... more >>
|