|
|
Search
You searched for the word(s):
Showing page 1 of 15 (733 total posts)
< 1 second(s)
-
Here's the query to know the counts of the table entries in SQL Server
select object_name(object_id), row_countfrom sys.dm_db_partition_statswhere index_id < 2order by row_count desc
-
Being in Software Industry; I am often contacted by people who are looking for a “simple accounting software” (or some time simple retail software) and often say they need very simple thing which might need 1 to 2 developer month time of development…Some even try this; and then come back after 3-6 months blaming software developers that they could ...
-
If you have created your custom ASPX and getting “File Not Found” exception; here are few possible reasons and solutions
Place the assembly (DLL) containing the code behind code into the sharepoint web application’s bin folder. If it resolves the issue but you don’t want to keep the DLL into web application’s bin folder and instead want to have ...
-
ASP.NET MVC 2 is released lately, and I was fascinated by the ASP.NET MVC 2’s strongly typed HTML helper; where you can tell the library the field name in compiler friendly fashion like <% Html.TextBoxFor( m => m.FirstName) %>
MVC’s Html helper class magically outputs the correct tag having necessary stuff like id of the ...
-
From the Wikipedia Active Directory Application Mode (ADAM) is a light-weight implementation of Active Directory. ADAM is capable of running as a service, on computers running Microsoft Windows Server 2003 or Windows XP Professional. ADAM shares the code base with Active Directory and provides the same functionality as Active Directory, ...
-
Most of the things in Microsoft Dynamics GP are Dexterity based; which is a RAD scripting like environment with rich support for Forms, Tables etc; something like PL/SQL. Dynamics GP also supports .NET based clients assemblies that you can load against GP forms; for that you need to create form factories according to the Dynamics GP expectations. ...
-
I just voted for Multiple web.config Transforms for ASP.NET. What do you think? I just voted for Silverlight on XBOX 360 for Silverlight. What do you think?
-
Simply save the following content using Notepad at %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch as a file having extension scf; like Show Desktop.scf; it will not appear right away; you can then enable disable the Quick Launch toolbar to force it to reload the icons!
[Shell]
Command=2
IconFile=explorer.exe,3 ...
-
http://meego.com, Meego = Maemo (Nokia) + Moblin (Intel)
-
Few weeks back I was in process of choosing my new smart phone. I figured out that iPhone is just a buzz and has become sort of status symbol. Symbian is dying; Nokia is left behind alone and others have moved away to Android. S60v5 is the latest and I guess the last release as Nokia is positioning to use Maemo (Linux underneath) for its next ...
-
-
http://msdn.microsoft.com/en-us/library/bb677368(SQL.90).aspx discusses how to install these two on single box.
http://blogs.msdn.com/sharepoint/attachment/4194088.ashx is Installation/Configuration Guide for SharePoint Integration Mode
-
SQL Server 2005 Reporting Services SP2 or later can be integrated with Sharepoint. Setting it up is bit tricky. http://msdn.microsoft.com/en-us/library/ee384252.aspx URL is must read to troubleshoot the issues. For me following worked
Ensure only Windows Integrated Authentication is checked on http://server/ReportServer
DisableLoopBackCheck ...
-
Coding Event Receivers with Visual Studio Extensions for Windows Sharepoint Services (VSeWSS) is easy; you add it into your project using Add New Item –> Sharepoint / Event Receiver. You dont need to add “EventReceiver” in the name; as it will automatically post fix; ItemEventReceiver and ListEventReceiver names to the two classes that it ...
-
From the BB13 video you must have learned that you can create Sharepoint Custom Lists from Visual Studio is quite easy. The experience over all is not very great; as you have to edit the XML files. The easiest way however is that you create your Custom List using the Sharepoint web interface; and once the list is well established; script it ...
-
These are the things that I could recall which tease the developers in start. I might have missed; so feel free to post to this or contact me if anything is bothering you especially in the use of VseWss. If I would have faced it myself I might be able to get you out!
-
Sorry for not posting regularly lately; I was away busy learning/using/preaching and coaching about Silverlight and Sharepoint. All in all, it was great learning expereince!
Sharepoint development is bit tricky to start with. Sharepoint is flexible and thus bit complicated to deal with. There are number of ways for Sharepoint Development. I opted ...
-
-
To learn more about ASP.NET MVC; check out Scott Guthrie posts
http://weblogs.asp.net/scottgu/search.aspx?q=MVC&o=DateAscending&PageIndex=1
-
Visual Studio 2010 Beta 2 is recently made generally available to try and it has ASP.NET MVC2 Preview 2 out of box. In ASP.NET MVC2; there is a breaking change from ASP.NET MVC 1. The ASP.NET MVC’ built in JSON support will only serve for POST request and discards GET requests due to JSON Vulnerability. Michael Campbell has written a detailed ...
-
There are lot of goodies in .NET 4 for Parallel Programming. There is even a separate dedicated section on it. The following picture from that section explains the four categories of improvement in Framework just for this.
I mentioned earlier that previously I used Abortable Threadpool to implement cancelling work under specific condition. With ...
-
A while ago I was asked to complete a job that polls a data from many devices connected over satellite (slow and congested) links. The requirement was to poll data periodically; and somtimes while previous poll cycle was running the next poll time gets triggered. I used the Abortable Threadpool to implement this but still had to implement my own ...
-
Barrier class is newly introduced in .NET 4 and it enables the multiple tasks to cooperatively work on an algorithm in parallel through multiple phases. For instance you are polling the data from multiple data source; and this polling is multi step process. While polling in parallel you want coordination that on each step the parallel running ...
-
I wrote a stored procedure a while back; it manipulates the database of a legacy and proprietary application. Few assumptions were taken like the stored procedure will always get invoked by the job and job doesn't run in parallel. Few weeks back there was a requirement to let the user do that operation from the web on demand; which triggered the ...
-
The other day I received a query on how to update rows in a table having from clause and self join needs to be used…I thought its interesting scenario and should document it for future references…
Let me explain the problem with a scenario…Lets consider a table in which hierarchy is implemented using Parent / Child to self; something like create ...
-
Microsoft is preparing to launch Office Web Apps (more or less like Google Docs) and its Tech Preview is released to selected testers…I think it will be largely available along Office 2010! Currently Excel and PowerPoint are available in Tech Preview; and I must say its really impressive…I was expecting that it might be in Silverlight; but they ...
-
Sometime while implementing some date/time specific business logic; we need to do some processing on datetime data; e-g trimming away the time, knowing the start of month datetime value. Instead of converting the datetime data to string and then doing some string processing; we can use the SQL Server’ built in functions like dateadd and datediff ...
-
.csharpcode, .csharpcode pre
{
font-size: small;
color: black;
font-family: consolas, ''Courier New'', courier, monospace;
background-color: #ffffff;
/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: ...
-
For the seperate MSDN Channel 9 vidoes on Web Application Toolkit, visit http://channel9.msdn.com/tags/Web+Application+Toolkit
-
I started using IE again after IE7 mainly because of its speed and the fact that it has copied all the nice features (Tabs) of Firefox <smile />
IE8 has got some nice developers features (JavaScript debugger with Breakpoints, Native Json support, CSS3 selector to name few) and this video from MSDN Channel 9 is must watch to learn about ...
-
If your company / or you know some company...who can quote us the best price for Dynamics GP 10 with AM with 5 user (at one deployment) and 10 user (at another deployment), please also quote me!!!
I also need quote for eConnect.
-
Is anyone around has worked with Microsoft Dynamics GP product? (v10) I have an integration project and some basic training work to accountants / data entry operators and management folk for adoption (migrating from another such accounting/financial/mini-ERP product).
Please contact me at khurram AT sharpcoders DOT net
-
Program Site: http://www.microsoft.com/web/websitespark What you get The right to use the following products for three years
For Development Use Visual Studio Professional Expression Studio 2 or Expression Studio 3 (1 User) Expression Web 2 or Expression Web 3 (2 User) Windows Web Server 2008 or R2 SQL Server ...
-
Belated Ramadan and Eid Greetings! I had been busy both at work and at home, could not even catch up with my subscribed RSS feeds…
The other day I was watching Urdu version of “Baby’s Day Out” along with my kids on Geo. My wife had a busy vacation; house workers were off and as we have moved back living with parents and being elder she was ...
-
@Mahesh regarding masking see http://weblogs.com.pk/khurram/archive/2009/05/02/sending-sms-using-at-commands.aspx#160405
@Mahesh regarding receiving message, cant say you have the code; did it worked?
-
Silverlight Tools for Visual Studio installs the Silverlight SDK; the Silverlight 2 SDK featured System.Web.Silverlight assembly that had Silverlight ASP.NET control through which you can host your Silverlight application. The Silverlight 3 SDK doesnt has this assembly…If you have used this control and upgrading to latest tool…before uninstalling ...
-
http://seethelight.com, few hours to go!
-
Have you tried it yet?
Will Unite make any difference?
-
ASP.NET provides wide spectrum; you can develop reusable interface components using User Controls, Server Controls and Web Parts (WebForms world). There are three ways to develop ASP.NET Server Controls.
Render Contents
You can override RenderContents and using the writer can flush out the HTML text you want. Its more or less the same Classic ...
-
AT
AT+CMGF=1
AT+CMGL="ALL"
will list all SMS from SIM
You can choose the store with +CPMS, e-g
AT+CPMS="SM"
SM for SIM, ME for Memory, MT all Stores, BM for Incoming Cell broardcasts, SR for Status Reports. +CMGD is used to delete the message, e-g
AT+CMGD=1
will delete first message
Also Google/Bing other related one ...
-
Application Development- 19 Reasons Why Microsoft Is Huge with Developers (and 1 Reason Why Not)
The 1 reason why not, its cent percent true!
-
There are number of tricks in debugging JavaScript / Ajax Applications, its very hard to explain new developers in team and I was looking for some nice article to use as reference. The tutorial at asp.net  http://www.asp.net/learn/ajax/tutorial-06-cs.aspx has very nicely compiled information on this topic, even though its oriented towards ...
-
Mahesh, which mobile phone you are using? I tested it with Nokia N73, N80 and N95, and they all worked fine...I am also using a variant of this code with a GSM Modem Device (Not a mobile phone, just some device which exposes itself as GSM Modem)
I suggest that you also try the other code/software I linked, the one at CodeProject.com, it however ...
-
Get the SkyFire from http://m.skyfire.com, a free browser for S60-3rd Edition (Nokia N/E Series) and Windows Mobile 5 (and above) which supports Silverlight and Flash 10 along with JavaScript/Ajax support…
Visit http://skyfire.com for more info!
-
Deep Dive: Dynamic Languages in Microsoft .NET, http://channel9.msdn.com/pdc2008/TL10 explains how DLR works and whats its position in CLR 4
This is presentation by Jim Hugunin, the creator of IronPython (which eventually contributed to DLR, and DLR is now key part of CLR 4). He also touches why CLR was attractive platform for Dynamic Languages. ...
-
Visual Studio 2010 Beta 1 is available to try. Don't forget to download the Visual Studio 2010 and .NET Framework 4 Training Kit – May Preview
Pros Further Improved JavaScript intelli-sence Work side by side with Visual Studio 2008 HTML Snippets Loads of Code Editor Improvements Cons Resource Hungry No offline Help No ...
-
Yes, you need to send PDU encoded message...Above instead of AT+CMGF=1, you will be using AT+CMGF=0 and then your message should be PDU encoded.
- http://www.codeproject.com/KB/mobile/smspdulib.aspx is one library to encode/decode PDU SMSes.
- http://www.scampers.org/steve/sms/samples.htm is another (code not available). ...
-
GSM Phones can be hooked with your PC and the drivers that usually come with them get it configured as Modem. Once setup, you can open the serial port and send AT commands to it and with it can send SMS!
A friend of mine asked for some utility to send SMSes in bulk, and I gave him the above info. He is hobbyist programmer and I think he can get ...
-
I am stuck in pushing a project to its “end” this month…still few more steps to do..but we are seeing the end! I had a feeling that I am giving the most and doing the kind of work which I am not supposed to do…I wanted to confirm it statistically..so I asked at StackOverFlow ...
-
Microsoft announced beta of Silverlight 3 featuring lot of Media Improvement (which shows their commitment to continue to add attractions in Silverlight so it become the preferred media delivery platform) and tons of improvement around Line of Business…they still lacking printing support! (and webcam/microphone support which would be great for web ...
1 ...
|
|
|