1,302 Posted Topics
Re: because they didn't learn to search! but I suggest for sender to take this thread and read it may help [URL]http://www.daniweb.com/forums/thread88224.html[/URL] | |
Re: what are you saying :| I think that's some sort of impossible tasks!!! at least you should know the exact path, files reside down. | |
| |
Re: add it programmatically | |
Re: ask specific question, any answer will make for you the program. if you spend 10 minutes reading media player class library you'll get what you need. | |
Re: ask specific question, any answer will make for you the program. if you spend 10 minutes reading media player class library you'll get what you need. | |
Re: [URL]http://www.codeproject.com/cs/media/directshowmediaplayer.asp[/URL] | |
Re: Welcome, Laura my name is Ramy Mahrous, hope that too, this is really fantastic site :) | |
Re: go to [URL="http://www.mysql.org"]www.mysql.org[/URL] you'll find their libraries to connect from VS | |
Re: The most suitable forum is [URL]http://www.daniweb.com/forums/forum27.html[/URL] | |
Re: for some performance issues VC++ is greater and Network applications also VC++ is better, I worked in network application for small period by VC++, C# and Java really really VC++ was veryyyyyyyy good and then comes C# then JAVA :S (As I hate it:D) C# for ADO application is better. … ![]() | |
Re: Regular expressions would help System.Text.RegularExpressions; | |
Re: You call this once the control became active, then nothing called after that, I think you should use Observer pattern to keep monitoring your richtextbox, as it selected call this method. | |
Re: why many-to-many, when some subContactor leaves the team, update it with the new one (ID) -- One-to-many. if you want to keep track on the subContactors you should use many-to-many but keep in you mind to include period in the bridge table. | |
Re: sleep!! divide the problem to much smaller pieces, solve each a lone. | |
Re: WIMAX is great, and Security in Wireless connections is vulnerable, you can enhance any software or do yours from scratch(but I don't recommend), what's the time available to you? | |
Re: Sorry, I didn't get you, but can you please clarify more, give me example of your problem | |
Re: [code] unsafe { // use pointers } [/code] don't forget to set your project to allow unsafe blocks of code From project properties->Build->Allow unsafe code | |
Re: try this [URL]http://www.mvps.org/access/bugs/bugs0017.htm[/URL] if the problem is the same contact me again | |
Re: Yes you can, COM is a concept and used for some reasons, and your questions answer is Yes | |
Re: [code] #include <dos.h> system ("shutdown +a"); // to enable automatic shutdown system ("shutdown -s -t 1"); //to shutdown in 1 second [/code] | |
Re: you maybe need to close the file after editing.. | |
Re: let this method to be in dll, add reference, call it | |
Re: you can post your question in Java forum to get more answers [URL]http://www.daniweb.com/forums/forum9.html[/URL] | |
Re: MSDE (Microsoft SQL Server Desktop Engine) or Microsoft SQL Express and .net framework 2.0 is free.. you won't enforece your client to pay additional fees. Client don't need to have SQL Server in your case rather to have SQL Express Edition, what you should do is to attach db while … | |
Re: It's so easy, Crystal Reports used in complex reports and it makes life easier for you, some styles and so on | |
Re: field in your class [code] class Kobi { string name;// will be accessed from all methods } [/code] | |
Re: [URL="http://www.msdn2.com"]www.msdn2.com[/URL] search on C# you'll find good tutorials and Videos too | |
Re: Try this [URL]http://fci-h.blogspot.com/2007/06/how-to-play-flash-swf-inside-c.html[/URL] | |
Re: I recommend to ask this question in Web Development forum, to get the correct help :-) | |
Re: Change your machine time format Control Panel->Regional and language options | |
Re: Dear hollystyles; Search on the Windows API that got the key pressed, that's the half of your question way. the next half is to make use of it. I recommend a site called apiviewer.com I think it may help you alot in which method in which windows APIs to use. | |
Re: Dear [COLOR=#0033cc]bumassjp,[/COLOR] [COLOR=#0033cc]I got your problem in getting each item[/COLOR] [COLOR=#0033cc]So,[/COLOR] [COLOR=#0033cc][/COLOR] [COLOR=#0033cc]Read file data[/COLOR] [COLOR=#0033cc][code][/COLOR] [COLOR=#0033cc]string data = null;[/COLOR] [COLOR=#0033cc]data = File.ReadAllText("FilePath");[/COLOR] [COLOR=#0033cc]data = data.Remove(0); //to remove $[/COLOR] [COLOR=#0033cc]string items = data.Split(','); // to get each item[/COLOR] [COLOR=#0033cc][/code][/COLOR] [COLOR=#0033cc]in your input the items[2] would be 'A' vbrep_register("432928")[/COLOR] | |
Re: did u run this program as administrator, if you don't please run it as administrator and modify your code to be [code] [COLOR=#0000ff]void[/COLOR][COLOR=#000000] ClearFolder([/COLOR][COLOR=#2b91af]DirectoryInfo[/COLOR][COLOR=#000000] folder)[/COLOR] { [COLOR=#0000ff]foreach[/COLOR] ([COLOR=#2b91af]FileInfo[/COLOR] file [COLOR=#0000ff]in[/COLOR] folder.GetFiles()) { [COLOR=#0000ff]try [/COLOR]{ file.Delete(); } [COLOR=#0000ff]catch [/COLOR]{ } } [COLOR=#0000ff]foreach[/COLOR] ([COLOR=#2b91af]DirectoryInfo[/COLOR] subfolder [COLOR=#0000ff]in[/COLOR] folder.GetDirectories()) { ClearFolder(subfolder); } } [/code] … | |
Re: I don't know exactly a solution but let me work around it, you can get the X and Y coordinates save this location as images, as you see this image will be 1 pixel, use System.Drawing to get the color of the pixel (You may find an easier solution) | |
Re: Ise Microsoft Outlook APIs to send the mail programatically through Microsoft Outlook. To send email from your application without using Microsoft Outlook APIs, use Microsoft CDO library for Windows 2000 | |
Re: try to use multithreading, if the problem is the same tell me | |
Re: [COLOR=#000000]Dear friend,[/COLOR] [COLOR=#000000]I see you should learn algorithms and data structure absolutely autonomous any programming language that’s would make you better than restricted with some languages implementation on some specific algorithms[/COLOR] [COLOR=#000000]I prefer this book “Algorithms” from Addison Wesley[/COLOR] [COLOR=#000000]If you could not get, add me on [/COLOR][EMAIL="ramyamahrous@hotmail.com"][U][COLOR=#0000ff]ramyamahrous@hotmail.com[/COLOR][/U][/EMAIL][COLOR=#000000] to send … | |
Re: [code] string str= "12,13,14,15"; string[] strs = str.Split(','); ArrayList strsList = new ArrayList(); foreach(string s in strs) strsList.Add(s); [/code] | |
Re: [B]Delegates[/B] in C# is function pointers in C++ It means you can create a reference to encapsulates a method (in VS 2003) and anonymous methods too (in VS 2005) [B]Events: [/B]Methods fired when something specifically done | |
Re: C++/VC++/C#/ : Programming language COM/ Component Object Module, to develope your application in away of Modularity, Useability , .... MFC/ classes libarabies to develope windows applications WIN32API classes libarabies use some windows APIs 2 - VC++, but If you want really low level so C/C++, 3 - we do not … | |
Re: Threading.. Try to call function in event instead execute some codes in the event itself and let the event start new thread and call the function within | |
Re: I think you mean that... [code] class CImage { static Image myImage; static CImage m_cimage = null; Private CImage() { } public static CImage GetTheOnlyInstance() { if(m_cimage != null) return m_cimage else return new CImage(); } } [/code] |
The End.