DCSIMG
DEV - Asaf Shelly

Browse by Tags

Windows Embedded Compact 7 Book
Saturday, October 15, 2011 11:05 PM
If you are interested in Windows Embedded Compact 7 you should take a look at Avi Kcholi's new book " Pro Windows Embedded Compact 7: Producing Device Drivers ". Avi is the number one expert in Israel and is one of the leading figures world wide. Soon to be published, you can already find it on Amazon: http://www.amazon.com/Pro-Windows-Embedded... Read More...
by AsafShelly | with no comments
תגים:, ,
Interview @ Intel IDF
Saturday, October 15, 2011 10:59 PM
Hi All, This is the interview I gave Intel last month at the Intel Developers Forum in San Francisco. http://software.intel.com/en-us/videos/black-belt-developer-asaf-shelly-at-idf-2011/ It has a few hints to future innovations. Asaf Read More...
An Interesting Review Of Windows 8
Tuesday, October 04, 2011 7:16 AM
I think that people should really listen to this.. especially Microsoft people http://altabel.wordpress.com/2011/09/28/windows-8-five-reasons-people-might-want-to-stay-away/ Read More...
by AsafShelly | with no comments
תגים:, ,
השב"כ מחפש מומחה ארכיטקטורת פיתוח
Friday, September 23, 2011 5:27 AM
השב"כ מחפש מומחה ארכיטקטורת פיתוח וזה נשמע לי תפקיד מפתה ויוקרתי מאד. אני מפרסם את זה בין השאר כי לא נפתחות הרבה משרות לארכיטקטים. קישור למודעה: https://www.shabak.gov.il/jobs/alljobs/computres/Pages/129.aspx אפשר לשלוח קו"ח גם אל: it. shabak@gmail.com בהצלחה, אסף Read More...
by AsafShelly | with no comments
תגים:, , ,
C# Library Version
Tuesday, May 24, 2011 8:19 PM
Colleting this from different sources. Looking for a library version similar to __DATE__ __TIME__ you need to use: System . Reflection . Assembly . GetExecutingAssembly (). GetName (). Version . ToString () For this to change every build you need to go to project properties, 'Application' tab, open 'Assembly Information', and set the last value... Read More...
by AsafShelly | with no comments
תגים:,
Softtalkblog Interviewed Me
Tuesday, April 26, 2011 2:09 PM
Here is the link: http://softtalkblog.com/2011/04/26/programmer-profile-asaf-shelly/ If you are reading this in the UK or Germany and interested in Parallel Computing then you are welcome to join the event for networking and technical discussions with Intel's representatives and myself Read More...
C# Convert Generic Type
Sunday, April 03, 2011 2:09 PM
I am posting this because I didn't see a simple solution on the first few hits when searching the net. If you have a generic class of type T and you want to using it with basic types such as int, long, etc. You can use the following method to do the casting: class myClass<T> { private int myVal; public T Get() { return ((T)(Convert.ChangeType(myVal... Read More...
by AsafShelly | with no comments
תגים:,
WES 2009 HORM Problem
Friday, February 25, 2011 1:22 AM
Windows Embedded Standard 2009, activating HORM (Hibernate Once Resume Many), xpepm.exe reported power manager cofiguration issue, fba.exe shut down the computer instead of hiberating it. Start by verifying that you can hibernate using Windows shut-down menu. Either you cannot hibernate because a driver does not support it (or is preventing it) or you need to... Read More...
by AsafShelly | with no comments
תגים:, ,
Windows Virtual PC Disk Compacting
Saturday, February 12, 2011 11:21 PM
Now that I have a new laptop (Windows 7) I am using my old laptop (Windows XP) as a Windows Virtual PC machine. It works faster than the old real machine but I had a problem with the disk space. The virtual machine is reporting that it is using 85GB of disk but the file size was actually 85GB on the host OS. When you turn off the virtual machine you can modify... Read More...
by AsafShelly | with no comments
תגים:, ,
WDK setup on Windows Embedded "unknown trust provider"
Thursday, February 10, 2011 3:01 PM
Hi All, I tried istalling my WDF based driver on Windows Embedded Standard 2009 and it failed. Dependency walker showed that my driver is missing the reference wdfldr.sys which is installed automatically with WDF's co-installer. Device Manager shows an unknown device under my device class and setup API identifies that a device with the class is installed... Read More...
by AsafShelly | with no comments
תגים:, , ,
Graphedit Error 0x8007048f: Device is not connected
Wednesday, February 09, 2011 12:14 PM
I got this error on Graph Edit: "This graph can't play. The device is not connected. (Return code: 0x8007048f)" when I tried to open a USB capture device (VC600). The solution was to add the filter WDM Crossbar under the category WDM Streaming Crossbar, then render it's video output so that it is the input to the capture card. Hope this helps... Read More...
by AsafShelly | 1 comment(s)
תגים:, ,
My Conclusions on Parallel Computing
Sunday, April 11, 2010 10:33 AM
After practicing parallel computing for a long while I have decided that it is time to summerise things as I see them so far. See the post in the link below: My Conclusions on Parallel Computing Asaf Read More...
Exception by target of an invocation
Thursday, April 01, 2010 6:38 PM
Parallel Programming means that we use invocations more often than we did before. Visual Studio 2008 debugger will bring you to the correct line if you get an exception, but if you invoke a method within your own code the debugger will show you the location in your own thread, which means the line that invoked the code that eventually threw an exception. The... Read More...
C# Activate Previous Application Instance
Tuesday, March 09, 2010 5:50 PM
Continuing the following post and as an answer to Jasper: http://blogs.microsoft.co.il/blogs/asafshelly/archive/2010/03/02/c-close-previous-application-instance.aspx The following code will make sure that only one instance is running by exiting if an instance is already running, and activating that instance. [ DllImport ( "user32.dll" )] static extern... Read More...
by AsafShelly | 2 comment(s)
תגים:,
Verify Installation of a custom device using C#
Tuesday, March 09, 2010 5:24 PM
Hi all, Using my WinUSB C# component, I also needed to automatically install the driver if it is not already installed. The INF file defines a new device class by its GUID. This means that the class does not exist on the machine if the device is not installed. Here is the code: [ DllImport ( "setupapi.dll" , SetLastError = true , CharSet = CharSet ... Read More...
More Posts Next page »