I have been using this Influence theme from a little longer time and it's really impressive than other themes. I hope you will like this theme .
Home » All posts
10 Misconceptions of Microsoft SharePoint
1. "SharePoint doesn't run on Macs and iPads." Actually it works just fine with Office for Macs. Alternatively, with Office Web Apps, you can use your iPad browser to view and edit documents with no extra installations.
2. "SharePoint should be managed by IT." While, yes, IT should monitor SharePoint, it is made to be managed by the business and driven by the users. It's not just a tool for techies.
3. "SharePoint is easy, just install it and see the benefits." While it's not difficult to learn to use it, you and your team will need a plan and training to get the most out of it.
4. "SharePoint is only a glorified file store." That is a part of what SharePoint has to offer, but it does more than just store and manage files. Investigate further to see what else you can do with it.
5. "SharePoint is for collaboration, not for running critical LOB systems." You can absolutely integrate your LOB systems on SharePoint's network. It even has the architecture to allow you to host third-party applications.
6. "It always looks like SharePoint." If you're worried about getting stuck with an unoriginal design, don't be. SharePoint 2013 makes it even easier to incorporate your corporate style into different-looking websites. Many websites use SharePoint and you can't even tell just by looking at it.
7. "Our IT department can install it." Your IT department could handle the default installation, but for a full scale deployment, you'll want a team of experts to figure out the best method.
8. "SharePoint shouldn't need custom development." There is a lot of functionality built right into SharePoint, but you'll want to add small custom developments to bring out the biggest benefits.
9. "Everyone's using it so we should." Don't just jump on the bandwagon before determining if it's right for your team. Sometimes specialist products are actually the best option to save money long-term.
10. "SharePoint is a one-off project." It may start out as a project, but it's intended to be used consistently with your business, growing and adapting along with your business needs. The more you keep working with it, the more you find it really pays off.
With a clearer understanding of SharePoint and its benefits, you can now use it more confidently and efficiently. If you hear any of these misconceptions being shared as truth, you now also have the knowledge to correct them.
How To Read And Write Registry In C#
We will see how to read and write registry in c# today .
For people who don't know about registry if i tell it on my own words registry is like a registrar(the person who registers marriage) it registers all the software's that you install so it's like a registrar .
How to read registry ?
Actually reading a registry key is a simple and can be done with 3-4 lines of codes.I am doing this in Graphical User Interface program yes a Windows Forms Project . Add the namespace using Microsoft.Win32; now make sure what you want to read and where you want to read(Local Machine,Current User,etc) , I have no idea what to read so i will read a Google Chrome Extension registered here Google > Chrome > Extensions > dmibjfmphcpfoacbchialfobiohmhged
Now when i debug here the Message Box pops up with the 'path' value.
Done with reading .
How to write registry?
As it's very easy to read registry , it's easy to write registry by the way i can't write my key into the path i read because it Google's so i chose Current User path to write the registry key. As we did before (reading) add the namespace using Microsoft.Win32; now i will create a registry path and i will add a value called , my whole path is HKEY_CURRENT_USER\Software\Shim\Ultimate_programming_tutorials . ok now i will write the code to write the registry key.
Now when i debug a Message Box pops up saying value has been added and the path that the value was added.
Now when i look the path , the value is there .
Done with writing :) . I hope this is very useful :)
For people who don't know about registry if i tell it on my own words registry is like a registrar(the person who registers marriage) it registers all the software's that you install so it's like a registrar .
How to read registry ?
Actually reading a registry key is a simple and can be done with 3-4 lines of codes.I am doing this in Graphical User Interface program yes a Windows Forms Project . Add the namespace using Microsoft.Win32; now make sure what you want to read and where you want to read(Local Machine,Current User,etc) , I have no idea what to read so i will read a Google Chrome Extension registered here Google > Chrome > Extensions > dmibjfmphcpfoacbchialfobiohmhged
So as you can see the path in registry now i write 3 lines of codes to read the registry key path(the path of the extension) and show it in a Message Box .
RegistryKey path = Registry.LocalMachine.OpenSubKey("Software\\Google\\Chrome\\Extensions\\dmibjfmphcpfoacbchialfobiohmhged");//path of the registry
string read = (string)path.GetValue("path");//creating a string to get the value of 'path'
MessageBox.Show(read,"Registry Key Value", MessageBoxButtons.OK,MessageBoxIcon.Information);//the messagebox pops with the key 'path' value
I am sorry i couldn't explain everything in the code , as you can see in the first line we define where our key is "Local Machine" you can put anything places as in your registry for that by the way remember when you read or write registry you should use double // for the destination .Now when i debug here the Message Box pops up with the 'path' value.
Done with reading .
How to write registry?
As it's very easy to read registry , it's easy to write registry by the way i can't write my key into the path i read because it Google's so i chose Current User path to write the registry key. As we did before (reading) add the namespace using Microsoft.Win32; now i will create a registry path and i will add a value called , my whole path is HKEY_CURRENT_USER\Software\Shim\Ultimate_programming_tutorials . ok now i will write the code to write the registry key.
RegistryKey set = Registry.CurrentUser.CreateSubKey("Software\\Shim\\Ultimate_programming_tutorials");//setting the path
set.SetValue("website", "http://ultimateprogrammingtutorials.blogspot.com");//setting the value
MessageBox.Show("Value has been added " + set,"Value Added",MessageBoxButtons.OK,MessageBoxIcon.Information);//creating a messagebox to show it's added(value)
set.Close();//closing the current process
website is the name of the value we are setting and http://ultimateprogrammingtutorials.blogspot.com is the value of work :).Now when i debug a Message Box pops up saying value has been added and the path that the value was added.
Now when i look the path , the value is there .
Done with writing :) . I hope this is very useful :)
How To Set .NET Framework Target For VB.NET and C# Projects
I heard that many people don't know how to change the .NET Framework target in their projects or they don't know why their programs don't work on others pc who don't have the .NET Framework that you use so i wanted to write an article about changing the Framework so , i think everyone should target their .NET Framework to the older version because not everyone have the latest .NET Framework ; i always target my Framework to .NET 2.0 because most of the people have .NET Framework 2.0 . There is a small problem in changing your .NET Framework , if you use any latest libraries or maybe algorithms that are not compatible with older versions of .NET Framework then when you change the Framework Target it will show lots of error . I will come to the point now changing the .NET Framework is easy by the way i would like to say that it's better to change the .NET Framework target when you just started the project and don't think to change the .NET Framework in the middle of your project or in a finished project because there is a chance of your project getting corrupted .
How To Get HWID In C#
I think some of you know that i have write a tutorial to get the HWID in vb.net , if you want to look at it you can go here . coming to the point now to get the HWID first of all it's something with your system so first go ahead and add right click your project name and select add reference then a windows will pop up now go to .NET tab and search for System.Management when you found that tick it and click ok.
How To Make A Downloader In C#
in
c#,
c# compiler download,
c# download,
c# download image,
c# for beginners,
c# to vb,
c# training,
c# tutorial,
c# tutorials,
download,
download c#,
download c# compiler,
tutorial
- By
Mohamed Shimran
- on 6/06/2013
- 17 comments
Making your own downloader (simple download) would sound hard and maybe boring but actually it's not , it's very easy to make a downloader in c# . Today i will tell you how to write downloader in c# in the easiest way by the way this is just a simple one .
First of all create a new project then add two buttons, two text boxes, two labels & at last add a progressbar now change the properties of your tools as given below
Button1 - Text : Download
Button2 - Text : Save
Label1 - Text : Direct Link(Optional)
Label2 - Text : Save File(Optional)
Textbox1 - To Put The Download Link
Textbox2 - To Show The Save Directory
Arrange the tools to make your form look like this
First of all create a new project then add two buttons, two text boxes, two labels & at last add a progressbar now change the properties of your tools as given below
Button1 - Text : Download
Button2 - Text : Save
Label1 - Text : Direct Link(Optional)
Label2 - Text : Save File(Optional)
Textbox1 - To Put The Download Link
Textbox2 - To Show The Save Directory
Arrange the tools to make your form look like this
AP WOW Wake On Wan : Wake Up Your Computer
in
2013,
get local ip,
hosttoip,
ip,
ip information,
review,
software
- By
Mohamed Shimran
- on 6/05/2013
- No comments
AP WOW Wake On Wan is useful program that allows you to send packets to a computer in order to switch it on .
How To Use?
How To Use?
- Click Enable WOW to enable wake on wan.
- Inset the IP address of the computer that you want to switch on.
- Insert the MAC address of the computer that you want to switch on.
- Insert the default subnet of the computer that you want to switch on.
- Insert the Port that you have forwarded to receive the packets.
- Click Start (WOW) to send a packet to the computer that you want to switch on.
- Internet Connection
- .NET Framework 4.0
- Administrator Privilege
![]() |
Working Example
|
How To Make Typing Effect In C#
Everyone wants the typing effect in their about form of their program even i want :) , so i found a very good way to do that thing easily .
First of all create a new project to test this & add a label from the toolbox because we need it also add a timer to the form . Don't change change anything in the timer properties , Now let's create a String and a Static Integer .
Now let's debug the program and see what happens
First of all create a new project to test this & add a label from the toolbox because we need it also add a timer to the form . Don't change change anything in the timer properties , Now let's create a String and a Static Integer .
string Type_Text = "Ultimate programming tutorials";//This is the text that's going to be typed static int index_Num = 0;//declaring integer index_NumNow on form_load event let's code some basics
timer1.Interval = (150);//setting the timer interval since timer interval is Int i am not using "
timer1.Enabled = true;//enabling the timer
label1.Text = "";//setting label1 text to be empty
}
Now at last we'll go to timer_tick event so create the event first of all and we'll do some maths (*_*)label1.Text = Type_Text.Substring(0, index_Num) + "_";//Substring is a part of Type_Text String that we declared at the start
index_Num++;//Doing a post fix
if (index_Num == Type_Text.Length + 1)//An if statment with a condition of course
{
index_Num = 0;
}
Here is the full codes //Author : Mohamed Shimran
//Blog : http://ultimateprogrammingtutorials.blogspot.com
string Type_Text = "Ultimate programming tutorials";//This is the text that's going to be typed
static int index_Num = 0;//declaring integer index_Num
private void Form1_Load(object sender, EventArgs e)
{
timer1.Interval = (150);//setting the timer interval since timer interval is Int i am not using "
timer1.Enabled = true;//enabling the timer
label1.Text = "";//setting label1 text to be empty
}
private void timer1_Tick(object sender, EventArgs e)
{
label1.Text = Type_Text.Substring(0, index_Num) + "_";//Substring is a part of Type_Text String that we declared at the start
index_Num++;//Doing a post fix
if (index_Num == Type_Text.Length + 1)//An if statment with a condition of course
{
index_Num = 0;
}
}
Now let's debug the program and see what happens
As you can see in the image it's working nicely by the way the gif is bit laggy don't mind it . I hope this really helps .
















