среда, 12 ноября 2008 г.
|
| Alternative take a look at FolderView.Net control from... Guest 06:15:24 |
| | Alternative take a look at FolderView.Net control from http://www.ssware.com
It is powerful and includes the filtering features that you want. But its commercial. |
| | Add comment |
понедельник, 10 ноября 2008 г.
|
| LINUX AND C# Guest 15:57:54 |
| | Does anyone have an idea hot to make c# work on linux if so could u give me detailed explanation coz I don’t know linux but my project is done in c# and linux please mail to me at ammaps_dev@zyberops.com Thanking u in adavance
|
| | 2 answer | Add comment |
четверг, 30 октября 2008 г.
|
| Thanks for all the suggestions. I finally got a working... Guest 10:10:48 |
| | Thanks for all the suggestions. I finally got a working solution. I do nor promise that it is correct.
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)] internal struct MINIDUMP_EXCEPTION_INFORMATION { internal UInt32 threadId; internal IntPtr exceptionPointers; internal UInt32 clientPointers; }
[DllImportAttribute("dbghelp.dll")] [return: MarshalAsAttribute(UnmanagedType.Bool)] private static extern bool MiniDumpWriteDump ([In] IntPtr hProcess, UInt32 ProcessId, SafeFileHandle hFile, DumpType DumpType, ref MINIDUMP_EXCEPTION_INFORMATION ExceptionParam, [In] IntPtr UserStreamParam, [In] IntPtr CallbackParam); [DllImport("kernel32.dll")] private static extern uint GetCurrentThreadId();
public static void WriteMiniDumpForProcess(string fileName) { MINIDUMP_EXCEPTION_INFORMATION exInf; exInf.threadId = (UInt32)GetCurrentThreadId(); exInf.exceptionPointers = Marshal.GetExceptionPointers(); exInf.clientPointers = 1; ... Best Regards Ferdinand |
| | Add comment |
четверг, 28 августа 2008 г.
|
| Then, the rigth documentation should say:"Returns the... Guest 14:46:47 |
| | Then, the rigth documentation should say:
"Returns the smallest non-decimal (or non-fractional) double greater than or equal to the specified double-precision floating-point number."
|
| | Add comment |
вторник, 5 августа 2008 г.
|
| Open the Visual Studio command prompt (or any command... Guest 16:50:50 |
| | Open the Visual Studio command prompt (or any command prompt and navigate to the location of the VS exe 'devenv.exe') and type the following command:
devenv /ResetSkipPkgs
|
| | 1 answer | Add comment |
среда, 18 июня 2008 г.
|
| im getting a similar error. after i set my DEVPATH and my... Guest 19:04:05 |
| | im getting a similar error. after i set my DEVPATH and my machine.config, anytime i boot up a WPF app, I get an exception with PresentationFontCache.exe |
| | Add comment |
среда, 28 мая 2008 г.
|
| In TableLayoutPanel their is ColumnStyles from their you... Guest 10:19:53 |
| | In TableLayoutPanel their is ColumnStyles from their you will get some idea |
| | 1 answer | Add comment |
воскресенье, 24 февраля 2008 г.
|
| Thanks a lot for the explanation!It is the most helpful... Guest 22:40:27 |
| | Thanks a lot for the explanation! It is the most helpful info that i have seen for 2 days researching the problem. |
| | Add comment |
среда, 12 декабря 2007 г.
|
| well, that is great, but how to remove or delete from that... Guest 11:04:13 |
| | well, that is great, but how to remove or delete from that datatable ???? magmoud.ramzy@hotmail.com |
| | Add comment |
пятница, 16 ноября 2007 г.
|
| "Per Bolmstedt": if u're UL-Tomten, then please upload the... Guest 04:19:01 |
| | "Per Bolmstedt": if u're UL-Tomten, then please upload the full version (the current one is crippled) of your "Nemesis" remix on "remix(dot)kwed(dot)org" or atleast please inform where to get it... to prevent clogging this thread u can mail it at kista4022 (at) gmail ...your mix of that tune is awesome
"to everyone else": im desperate, so sorry for barging in hijacking the thread like this (i tried to make this comment short) |
| | Add comment |
четверг, 15 ноября 2007 г.
|
| hi, am also looking for similar kind of thing.did u get any... Guest 05:22:40 |
| | hi,
am also looking for similar kind of thing. did u get any solution for this?
Thanks Ramki |
| | Add comment |
воскресенье, 4 ноября 2007 г.
|
| I tried out the wrapper code in order to use the ldap_add... Guest 17:53:03 |
| | I tried out the wrapper code in order to use the ldap_add, it always gives me error 65(0x41) which is LDAP_OBJECT_CLASS_VIOLATION: Indicates that the add, modify, or modify DN operation violates the object class rules for the entry. For example, the following types of request return this error:
* The add or modify operation tries to add an entry without a value for a required attribute. * The add or modify operation tries to add an entry with a value for an attribute which the class definition does not contain. * The modify operation tries to remove a required attribute without removing the auxiliary class that defines the attribute as required.
Anyone can help here?
thanks |
| | 3 answer | Add comment |
вторник, 28 августа 2007 г.
|
GPRS communications Indy 06:39:55 |
| | I am developing a network of client Kiosk applications that sell virtual products and accept cash as payment. They need to communicate with a central server to find out if the product type is available and communicate with the Kiosk for offer to the customer. Since these client Kiosks will be in remote locations I prefer communication via GPRS modems. The client app is written in VB. How can I design the GPRS communications? |
| | Add comment |
|
RS233 communication Indy 06:35:34 |
| | I would like to add a Bill Validator to my Kiosk application that will communicate via the RS232 port using HEX codes, how can I do this in VB? |
| | Add comment |
пятница, 17 августа 2007 г.
|
Problem with XmlSchema....Urgent!!!!! hemendra vyas 10:42:59 |
| | Please help out in following code snippet, please reply me at hvyas@irevna.com:
For the first time it gives prompt while XmlSchema.Read(). Second time schema_collection_object is not null and so does not enter into this block of code.
Please help............
private static XmlSchemaCollection schema_collection_object; private static XmlSchema m_ifschema; ------- ------- -------
if (schema_collection_object==null) { schema_collection_object=new XmlSchemaCollection();
XmlTextReader xmlFile=new XmlTextReader(path); //path contains the path of the .xsd file
m_ifschema=XmlSchema.Read(xmlFile,new ValidationEventHandler(ValidationCallBack));
//*******error is genarated in the above statement
m_ifSchema.Compile(newValidationEventHandler(Valid ationCallBack));
schema_collection_object.Add(m_ifSchema); }
|
| | Add comment |
четверг, 12 июля 2007 г.
|
| server=ss1;User ID=sa;pwd=;database=bank;Connect Timeout=30... Guest 12:50:25 |
| | server=ss1;User ID=sa;pwd=;database=bank;Connect Timeout=30 ;MultipleActiveResultSets=true |
| | Add comment |
вторник, 10 июля 2007 г.
|
| You can push the "Reset" button. Guest 10:43:03 |
| | You can push the "Reset" button. |
| | Add comment |
воскресенье, 8 июля 2007 г.
|
| see google's programmers search engine http://devshots.com... Guest 21:13:48 |
| | see google's programmers search engine http://devshots.com Devshots returns Google search results, but emphasize on programming related sites and resources. So the search result will be smart and accurate. |
| | 4 answer | Add comment |
пятница, 6 июля 2007 г.
суббота, 30 июня 2007 г.
|
| I get this problem also. I have 2 background threads and a... Guest 00:34:31 |
| | I get this problem also. I have 2 background threads and a main thread. When I lock my computer, and then unlock it, my GUI stops at a WaitOne, after a UserPreferenceChangedEvent of category Desktop. How can you fix this? |
| | 2 answer | Add comment |
понедельник, 25 июня 2007 г.
|
| They rock! Have you seen the latest controls like their... Guest 13:17:56 |
| | They rock! Have you seen the latest controls like their splitter control, web calendar and web scheduler? Great stuff.. been using them for years and they are getting better all the time. |
| | 2 answer | Add comment |
понедельник, 7 мая 2007 г.
|
| To enable menu item in Delphi use ......MainForm.Menu.I... Guest 07:58:31 |
| | To enable menu item in Delphi use ...... MainForm.Menu.I tems[0].Items[2].Enabl ed := True; .....
First digth(0) - number of menu item, second dight(2) - number of submenu item. Best Regards! =) Ice. |
| | Add comment |
|