- Strength to Increase Rep
- +13
- Strength to Decrease Rep
- -3
- Upvotes Received
- 114
- Posts with Upvotes
- 101
- Upvoting Members
- 46
- Downvotes Received
- 87
- Posts with Downvotes
- 51
- Downvoting Members
- 30
As usual i searched google to convert Decimal numbers to their Binary equivalents but i couldnt find any short algorithm for that matter. So here is mine.. | |
Re: I suggest that you use web user controls with .ascx extension instead of iframes. I can tell you how to do what you want with iframes too but it there will be unnecessary details. You can dynamically load the web user controls to different sections of web forms easily. | |
Re: this will give you a good idea and a working example [url]http://www.daniweb.com/forums/post882702.html#post882702[/url] | |
Re: [url]http://www.daniweb.com/forums/thread78963.html[/url] | |
Re: [QUOTE=Traicey;614678]Why should you complicate things while there is a easy way out, I mean C++ alone is complicated[/QUOTE] I totally agree with you, all you want to get is one line of string and see what you are supposed to do, as if it is rocket science.. | |
Re: [QUOTE=SushilKumar;155424]Hi Guys, Is it possible to call the C# function from Javasript...... Sushil Kumar :rolleyes:[/QUOTE] Yes it is possible to call C# function through javascript using Ajax extensions in Asp.Net | |
Re: i cant exit the application using Application.Exit() | |
i like openoffice much better than ms office, what do you think? After having to use ms word 2007 and other products under the ms office package and vista OS, i started to like non-microsoft products. Thanks to these crap(i dont remember it can be crab), i even started to … | |
Converts Xml document to string | |
How to overlay two images in c#? Thanks | |
I had a background image for one of the container divs in my page. I positioned it to a specific pixel using its style properties. It worked fine in the internet explorer but was located to a wrong position when displayed by firefox. So i wrote the following code to … | |
Re: can you change my user name too? i want it to be "serkan sendur" instead of "serkansendur". | |
Re: you can create a custom installer class library project and then assign it to custom action property of your setup project. check the last attachment in this link [url]http://www.daniweb.com/forums/thread200529-2.html[/url] it will give you an idea of how to use custom installer. Ask Scott for details :) | |
i want to loop through each avaiable color in Color struct. Is that possible? | |
Re: i tried something like this but it didnt work : [CODE]protected override void OnPaintBackground(PaintEventArgs e) { base.OnPaintBackground(e); Pen pen = new Pen(Color.Red, 3); Rectangle rect = new Rectangle(0, 0, 300, 300); e.Graphics.DrawRectangle(pen, rect); }[/CODE] | |
hi guys, it took me some time to find out how to export listview to excel, so i wanted to share it with you. i would like to post this thread as code snippet but in that section there is no attachment button that i can attach project to. i … | |
i was reading xerces-c class documentation, one of the methods does the writing of buffer to a file. what should i understand from buffer, how is it different from writing some stream to a file? What should i understand from stream? Thanks | |
Re: [QUOTE=bhavik_thegame;698769]Hii,, All I have to say that PHP is much better as compared to .NET and Java. Just put it this way, PHP is much more flexible and easy to learn than .NET, An expertise in PHP can also do programming in notepad(:icon_smile: ), i.e use a simple notepad as … | |
Re: [url]http://www.webpronews.com/expertarticles/2006/11/28/aspnet-export-a-datatable-to-excel[/url] | |
i created a custom installer for my mobile application, the problem is if device is not connected to cradle it tries to install the application next time the device is connected. i dont want it to happen, i want to check if device is connected to cradle. help please. come … | |
Re: i lke mart friedman's solo albums a lot. also last sunday i went to massage salon and had an hour of massage. During that, they were playing some far east relaxing music. i think i will find some of those as they will remind of being massaged and relaxed. The … | |
| |
Re: insert a break point to button_click event handler and then run the application in the debug mode, make sure to see if all the lines are executed. or attach your solution as zip file so we can test to see what's going on. | |
Re: skin file is applied to server controls and controlled and rendered by the server(iis). css is run by client's browser. skin also generates css but in the server whereas css directly sent to browser. | |
Query your datatable like sql's "select distinct" statement | |
| |
Re: try asp.net man, all this functionality is encapsulated to one web control: calender. and there is one in ajax control toolkit for asp.net. | |
To make some operations on XML elements you have to know their types. This snippet is about getting the types of these elements. | |
Re: lvalue (pronounced "ell-value"): An expression that is an lvalue may appear as either the left-hand or right-hand side of an assignment. rvalue (pronounced "are-value"): An expression that is an rvalue may appear on the right- but not left-hand side of an assignment. for example : let say a and b … |