Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
M

Mohamad K Ayyash

@Mohamad K Ayyash
About
Posts
29
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Database vs. RAM
    M Mohamad K Ayyash

    You are right but when it comes to tons of information and data, the difference will be seconds to even minutes!

    To follow the path, Walk with the MASTER, See through the MASTER, Be the MASTER!

    C / C++ / MFC database question visual-studio data-structures

  • Database vs. RAM
    M Mohamad K Ayyash

    Well if the database is located on disk then disk access is alot slower than RAM access, but if th database is located in memory then it's related to the type of database and such details...etc. Hope this helps:)

    To follow the path, Walk with the MASTER, See through the MASTER, Be the MASTER!

    C / C++ / MFC database question visual-studio data-structures

  • about Windows 2000
    M Mohamad K Ayyash

    In operating systems: 1- Hardware interrupts have the highest priorities and you can't disable them in win2000 because its multitasking and doing so harms the scheduling using the clock interrupt! 2- Process Managers and Reincarnation servers and memory manager have always the highest priorities so you cannot beat them!

    To follow the path, Walk with the MASTER, See through the MASTER, Be the MASTER!

    System Admin help tutorial

  • SMTP feedback from project
    M Mohamad K Ayyash

    Ok this may be a bit complicated, are you planning to create a web application that sends messages to the users SMTP server, if this was the case you may use PHP or ASP.NET built in capabilities to do so and that is generally easy, or if you need it in C# you may access the SMTP port 25 which works similir to ping and hence get a request with the client's SMTP server, without the need to access the registry!! I hope this helps. Best Wishes Mark!:)

    To follow the path, Walk with the MASTER, See through the MASTER, Be the MASTER!

    C# help sysadmin windows-admin beta-testing tutorial

  • Microphone Data
    M Mohamad K Ayyash

    Well I guess Direct X shall do the trick!!:):)

    To follow the path, Walk with the MASTER, See through the MASTER, Be the MASTER!

    C# question

  • 3D botton
    M Mohamad K Ayyash

    yes of course you simply need to override the button's Onpaint method to your desired shape, for more information alot of articles regarding this are found on the web and codeproject! (Tip: Next time search google first) :rose:

    To follow the path, Walk with the MASTER, See through the MASTER, Be the MASTER!

    C# csharp design

  • Process.Start() Problems
    M Mohamad K Ayyash

    Well classical problems like this are solved by using unmanaged code equivilant to the System.Diagnostics namespace from the win32 api. (Hint: search MSDN) Hope this helps!!;)

    To follow the path, Walk with the MASTER, See through the MASTER, Be the MASTER!

    C# question help

  • SMTP feedback from project
    M Mohamad K Ayyash

    Let me first give you a tip, about never to write such sensitive code that is not portable on all systems, a better solution is to use specialized packages and technologies for that, now regarding your question I would 100% go to Perl or Python .Net embedded scripts... I hope this tip will help you..

    To follow the path, Walk with the MASTER, See through the MASTER, Be the MASTER!

    C# help sysadmin windows-admin beta-testing tutorial

  • building 2 primary partitions
    M Mohamad K Ayyash

    Well your right for your explanation but let me add that the primary partition is the one that we can wright on their bootsector(located at the first sector from the first track(512KB) of your PRIMARY partition only which is also called BOOT partiton ) that is, operating systems may be installed on one till 4 primary partitons that gives you a chance for multi-boot(Windows, Linux, BSD Unix ..etc.) on same machine, and extended partitons cannot be boot partitions and thus they may hold logical drives for saving data only! I really do not agree with you that

    Sebastian Schneider wrote:

    "primary" simply indicated the "most basic partitioning system". Extended partitions are primary partitions, too.

    Correct me if I am wrong!!

    To follow the path, Walk with the MASTER, See through the MASTER, Be the MASTER!

    System Admin tutorial

  • building 2 primary partitions
    M Mohamad K Ayyash

    You can use disk management from (Run:compmgmt.msc) you may use Partition magic or a sort like this...

    To follow the path, Walk with the MASTER, See through the MASTER, Be the MASTER!

    System Admin tutorial

  • Virus (Urgent)
    M Mohamad K Ayyash

    Well you may use Norton though slow but it can scan your computer before even installing it because this virus may not let norton to get installed, you may use Kaspersky(my favourite):) Hope I can help:cool::rose:!

    To follow the path, Walk with the MASTER, See through the MASTER, Be the MASTER!

    System Admin help question

  • Start/Run disabled
    M Mohamad K Ayyash

    Your problem is a simple and classical one you are the adminstartor but can't access run, which is because its disabled in the registry, you try to run the registry but it was also disabled, so to fix it create a .NET program that uses the namespace Microsoft.Win32 to access the registry using Registry and RegistryKey ...(Hint: search MSDN for this namespace) and then program this program to : delete the key DisableRegistryTools (type=DWORD) with value 1 in HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\ to revive the registry delete previously made DWORD keys with value 1 in HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\ to re-enable RUN! And voila problem solved with this simple tweak!!!!! Hope this helps! :cool::cool: -- modified at 10:55 Thursday 13th September, 2007

    To follow the path, Walk with the MASTER, See through the MASTER, Be the MASTER!

    System Admin help

  • replacing windows explorer in windows XP
    M Mohamad K Ayyash

    Well good question I used it once when I was changing the name of the 'start' button into another name, well you need to change the value of the 'shell' in the registry to the name of your program. Glad I can help!! (Tip: Next time use google:):cool:)

    To follow the path, Walk with the MASTER, See through the MASTER, Be the MASTER!

    System Admin question linux

  • paste a breakpoint in the editor just as in vc++
    M Mohamad K Ayyash

    Well your problem is a bit strange:wtf:. If you want to paste an icon somewhere to remove it just paste another one with the background color on the same spot and problem solved!!:cool:

    To follow the path, Walk with the MASTER, See through the MASTER, Be the MASTER!

    IT & Infrastructure c++ debugging tutorial

  • Using applications with different version of crystal report on same machine
    M Mohamad K Ayyash

    Well Ali you are saying they are different versions and since .NET 2.0 Crystal Reports are installed with .NET framework 2.0 pakage on your computer so any old versions may be removed and hence can't run both!

    To follow the path, Walk with the MASTER, See through the MASTER, Be the MASTER!

    IT & Infrastructure csharp help announcement

  • What do you usually do with Windows Notepad? (A Simple Four-question Survey )
    M Mohamad K Ayyash

    1-Well I am a programmer! 2-Rarely 3-Well since its fast I use it to open some tutorials I download, I used to write C/Assembly languages code in it, but I created editors for these two so I am not using it alot now for code! 4-I already said I created my own tools for coding that can color the syntax for instance.:-D

    To follow the path, Walk with the MASTER, See through the MASTER, Be the MASTER!

    IT & Infrastructure question

  • Interprocess communication
    M Mohamad K Ayyash

    Well I don't know about the application you are using, but I guess if you were able just to get this output in someway or another(not in excel) you may easily create a program that organizes the output in an excel table or such.

    To follow the path, Walk with the MASTER, See through the MASTER, Be the MASTER!

    IT & Infrastructure question

  • Bootable CD
    M Mohamad K Ayyash

    Your right about how to create a boot disk but the boot program on the first 512KB Sector is not DOS's one and you must know exactly where to find that specific boot sector program and not just any program!

    To follow the path, Walk with the MASTER, See through the MASTER, Be the MASTER!

    System Admin tutorial workspace

  • Touchpad question...
    M Mohamad K Ayyash

    Use System.Management namespace(hint: visit and search MSDN) because this namespace has all about attached hardware to your computer plus diagnosing them!!

    To follow the path, Walk with the MASTER, See through the MASTER, Be the MASTER!

    Hardware & Devices question tutorial

  • Listing attatched devices
    M Mohamad K Ayyash

    Use System.Management namespace for mor information visit and search MSDN!

    To follow the path, Walk with the MASTER, See through the MASTER, Be the MASTER!

    Hardware & Devices question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups