Hi, yes it was removed. I was told that I cannt upload it without the source code here. you can download it from here http://nitzanlevi.com/?p=2824
Nitzan Levi
Posts
-
Free & simple time management application -
Free & simple time management applicationhi everybody, I published a small utility that I developed that helps keep a record on exactly how much time you actually spend on tasks: So, Whatya Doing? Simple Time Management Application[^] Hope you like it. feedback is appreciated. Thanks, Nitzan
-
Windows 8.1 Event log problemThe link was not broken. the site developerteacher.com is down...
-
Windows 8.1 Event log problemI guess you already found the answer... http://www.developerteacher.com/msdn/windows-event-log-window-8-1-16727[^]
-
restore database -
How many screens?As I recall dual-monitor is the recommendation for most uses... http://windows.microsoft.com/en-us/windows7/work-and-play-better-with-multiple-monitors[^]
-
Folder Permissions - Urgent Help Pleaseyou need to change the user that your application is running under. see samples: User Impersonation in .NET[^] http://stackoverflow.com/questions/1168571/run-code-as-a-different-user-c[^] http://stackoverflow.com/questions/125341/how-do-you-do-impersonation-in-net/7250145#7250145[^]
-
petitionSorry, clicked the wrong "reply"
-
Transition to automatically generated documentation (Doxygen)You could just convert the document to HTML. Its not the best practice and will probably lose some of the document markup, layout or comments but it will work…
-
Label and LinkLabel deprecatedThanks for the info, funny how it takes them ages to change something that seem logical...
-
petitionGuys don't be too hard with him. you have 2 ways to do it: 1. with special equipment like Intel real sense or Microsoft Kinect v2. The real sense comes with tons of .net samples and fully integrated to Unity. You can find Mirosoft Kinect V2 samples in the unity market but its only fully integrated with the Unity pro version. you can still use the free but its not that comfortable... 2. Just use a third party library like OpenCV (but there are others…) http://docs.opencv.org/modules/contrib/doc/facerec/facerec_tutorial.html
-
ertan tike dayview calendar controlHi and welcome! Without seeing the code I think it will be hard to help you with this. But note that you are using a control from 2006. An excellent control but still things changed a bit since. Adding on top of this (without offending :) ) that you are a beginner, I am not sure if you want to go into this. I would suggest you try the controls of syncfusion. There is a free community version and good support. https://www.syncfusion.com/products/communitylicense good luck!
-
Get all the network activity data in Resouce MonitorHi, You will have to be more accurate in what you are trying to accomplish. There are a lot of projects and sample code in Github and Codeplex and here in Code Project. just some that I found now: https://github.com/arpit270896/NetworkMonitor https://github.com/scotlunsford/NetMonitor https://github.com/Nakadale/PMS Network Utility There are also excellent free tools so no need to invent the wheel…
-
What's more efficient in .Any and .Count in C# (Extension methods)Hi, They are both right. Just to be more accurate Where() does not necessarily enumerate over all elements, that depends on what you put in the condition. In general the advice is to stick to Any().