Forum: C# Dec 6th, 2008 |
| Replies: 8 Views: 963 The Uri type is not string so you have to implement the code as follow
webBrowser1.Url = new Uri( "file:\\webpage\Maphs v1.htm"); |
Forum: C# Dec 6th, 2008 |
| Replies: 5 Views: 1,050 Are you sure about the path wheather it is right or not |
Forum: C# Dec 5th, 2008 |
| Replies: 17 Views: 1,657 http://msdn.microsoft.com/en-us/library/az4se3k1.aspx |
Forum: C# Nov 24th, 2008 |
| Replies: 6 Views: 423 |
Forum: C# Nov 24th, 2008 |
| Replies: 2 Views: 1,803 http://itextsharp.sourceforge.net/
May this library helps you to handle pdf using C# |
Forum: C# Nov 16th, 2008 |
| Replies: 3 Views: 1,530 Try this link
http://www.sqlteam.com/article/stored-procedures-returning-data
I think you have to mark the desired value to return with the OUTPUT keyword |
Forum: C# Nov 16th, 2008 |
| Replies: 2 Views: 403 Windows application is the desktop application like word excel those are windows applications
web application are simply the web site like dany web |
Forum: C# Nov 15th, 2008 |
| Replies: 2 Views: 360 you can use a left join query to the table it self |
Forum: C# Nov 15th, 2008 |
| Replies: 20 Views: 29,690 C# free books (http://www.c-sharpcorner.com/Beginners/Default.aspx) |
Forum: C# Nov 15th, 2008 |
| Replies: 3 Views: 1,530 Why you don' use an UDF user defined function instead of a stored procedure |
Forum: C# Nov 15th, 2008 |
| Replies: 9 Views: 730 Good question!!!
if just a method or a member that is not implemented yet means that this class is abstract without need to use any other keywords to indicate that a given class is abstract for... |
Forum: C# Nov 15th, 2008 |
| Replies: 5 Views: 661 Not at all, you're welcome |
Forum: C# Nov 15th, 2008 |
| Replies: 5 Views: 2,000 SendKeys.Send("{your key code here}"); |
Forum: C# Nov 15th, 2008 |
| Replies: 2 Views: 378 What is your request, do you need some help on doing a C# project for example? |
Forum: C# Nov 15th, 2008 |
| Replies: 5 Views: 661 If you have a class that leavrages your entire activity then you can implement IComparable interface method CompareTo() it is the best solution |
Forum: C# Nov 15th, 2008 |
| Replies: 8 Views: 815 If you are satisfied please mark the tread as solved
Happy coding |
Forum: C# Nov 15th, 2008 |
| Replies: 20 Views: 29,690 try this link it is for free and also consistant
http://www.c-sharpcorner.com/Beginners/ |
Forum: C# Nov 15th, 2008 |
| Replies: 3 Views: 3,501 It is impossible to add a datagridviewrow to a data bound data grid, if you do you will recieve an exception at run time |
Forum: C# Nov 15th, 2008 |
| Replies: 5 Views: 661 Could you tell me what is your final purpose may I give you better idea |
Forum: C# Nov 15th, 2008 |
| Replies: 3 Views: 1,461 This is a sample using 4 columns id quantity unit price and a dynamically added column that caucates the total
for the grand total you have to add a text box at the bottom of the page and... |
Forum: C# Nov 15th, 2008 |
| Replies: 8 Views: 815 If you use the console to input data then use
Console.ReadLine() as follow
Say that you want to enter a string
Console.WriteLine("enter your name");
string Name = Console.ReadLine();
... |
Forum: C# Nov 15th, 2008 |
| Replies: 1 Views: 1,293 if you want video streaming
http://www.cogitance.com/files/videoprocessing/videoprocessing.htm
If you want to use webcam
... |
Forum: C# Nov 13th, 2008 |
| Replies: 4 Views: 451 Or simply you can use interfaces to play the role of bridge |
Forum: C# Nov 13th, 2008 |
| Replies: 2 Views: 348 you can identify each assembly by its version
you can go the the assemblyinfo.cs within the project you will find there all information about a given assembly |
Forum: C# Nov 13th, 2008 |
| Replies: 2 Views: 273 In addition to what LizR said You can create your costum exception too
ex:
public class OddNumbersExecption:ApplicationException
{
public OddNumbersExecption()
:base("Odd... |
Forum: C# Nov 13th, 2008 |
| Replies: 6 Views: 380 No, If you have the right tlb you have to
generate a dll file issued from it using the dotnet tool Regasm.exe
statr>all program>visual studio 200*>Visual studio tools>Command prompt
then
type... |
Forum: C# Nov 12th, 2008 |
| Replies: 2 Views: 3,082 In addition to what the charmant Antenka said
you can derive an object form the datagridview and ovveride the protected method OnCellValueChanged
to change the cell backcolor you can use the... |
Forum: C# Nov 12th, 2008 |
| Replies: 3 Views: 499 You can create an Isolated storage files within the flash and set the securitypermissions so that reading accessing and writting from and to that isolated storage file is under control |
Forum: C# Nov 12th, 2008 |
| Replies: 9 Views: 730 There are a didderence between abstract classes and interfaces, the abstrac classes are used to derive new objects, like humanoid that we could use to derive Persons, Monkey chid types
public... |
Forum: C# Nov 12th, 2008 |
| Replies: 2 Views: 366 A static method belongs to the class rather than to the objects of the class.
using System;
class MyClass
{
private static int x = 20;
private static int y = 40;
public static void... |
Forum: C# Nov 12th, 2008 |
| Replies: 4 Views: 2,526 It's very simple you can do this in one single line
First, include the System.IO;
if you have permission to read from files
string Contents = new StreamReader(path).ReadToEnd(); |
Forum: C# Nov 12th, 2008 |
| Replies: 2 Views: 608 In the configuration file the *.config file make this modification using the binding redirect element to redirect your appliation to use the new version and it will work
<configuration>
... |
Forum: C# Nov 12th, 2008 |
| Replies: 3 Views: 382 when we go for webservices in .net webapplications? example plz?
2.what is mean by delegate and asynchronous delegate in .net
3.static method with example?plz
A web service is used like any... |
Forum: C# Nov 12th, 2008 |
| Replies: 3 Views: 526 You can also connect to the database using the connection wizard
Data>Add new data source |
Forum: C# Nov 12th, 2008 |
| Replies: 5 Views: 468 I'm totally agree with the charmant Antenka |
Forum: C# Nov 12th, 2008 |
| Replies: 2 Views: 379 OK, for the first question
The dictionaries are a sort of collections those
represent a collection of keys and values, each value corresponds to a unique key,
they could be used also in a... |
Forum: C# Nov 12th, 2008 |
| Replies: 11 Views: 951 ListBox.Items.Add(object element); |
Forum: C# Nov 6th, 2008 |
| Replies: 2 Views: 2,335 Ok, you can use the asynchrone mode of querying data instead of backgroud worker, I mean the application could request data meanwhile the UI is not going to be freezing I mean the user can interact... |
Forum: C# Nov 6th, 2008 |
| Replies: 12 Views: 1,098 Check if the remote server is not the server may be shut down |
Forum: C# Nov 3rd, 2008 |
| Replies: 3 Views: 492 |