Ramy Mahrous 401 Postaholic Featured Poster

You should initialize all object before using, I didn't see your code, but error message says that!

Ramy Mahrous 401 Postaholic Featured Poster

Has IDMAT duplicated values?!

Ramy Mahrous 401 Postaholic Featured Poster

the cursor file (.cur)

Ramy Mahrous 401 Postaholic Featured Poster

Save the selected image as binary data, I think MS Access supports Binary datatype, no need to convert it to matrix.

Ramy Mahrous 401 Postaholic Featured Poster

Give me sample of your code especially when you read via DataReader

Ramy Mahrous 401 Postaholic Featured Poster

Edit the form code generated and add this line
this.Cursor = new System.Windows.Forms.Cursor(CursorPath);
It works with me well.

Ramy Mahrous 401 Postaholic Featured Poster

http://msdn2.microsoft.com/en-us/vcsharp/default.aspx you'll find a lot of videos, articles and samples!

Ramy Mahrous 401 Postaholic Featured Poster

Give us the error raised!

Ramy Mahrous 401 Postaholic Featured Poster
Ramy Mahrous 401 Postaholic Featured Poster

See the documentation of (System.IO.FileInfo) class it would help you

Ramy Mahrous 401 Postaholic Featured Poster

Change ComboBox DropDownStyle to DropDownList, it forces user to select ComboBox items...

Ramy Mahrous 401 Postaholic Featured Poster

Sorry for being late as I was in Army last two days..

SELECT     Category_1.Name
FROM         Category LEFT OUTER JOIN
                      Category AS Category_1 ON Category.ID = Category_1.ParentID
WHERE     (Category_1.ParentID = 1)
Ramy Mahrous 401 Postaholic Featured Poster

When you trying installing your already installed application, it confirms if you need to uninstall it or not!

Ramy Mahrous 401 Postaholic Featured Poster

Thanks Jerry :)

Ramy Mahrous 401 Postaholic Featured Poster

I've answered you how to save the status of controls in your previous thread!

Ramy Mahrous 401 Postaholic Featured Poster
tabControl1.SelectedTab = tabPage2;
Ramy Mahrous 401 Postaholic Featured Poster

If this database resides on the server, type its name and use your suitable authentication options and select target database from databases downlist.

Ramy Mahrous 401 Postaholic Featured Poster
SELECT     dbo.Category.Name, dbo.Category.ID
FROM         dbo.Category LEFT OUTER JOIN
                      dbo.Category AS Category_1 ON dbo.Category.ID = Category_1.ParentID
WHERE     (Category_1.ParentID IS NULL)
Ramy Mahrous 401 Postaholic Featured Poster

Try to re-develop all projects you did by COBOL and Basic by C#

Ramy Mahrous 401 Postaholic Featured Poster

Project->add new item->Settings file

Ramy Mahrous 401 Postaholic Featured Poster

but, if you need to save some properties of the controls, I recommend to use .settings file

Ramy Mahrous 401 Postaholic Featured Poster

Extract the generated code by VS IDE, save it to the text file.

Ramy Mahrous 401 Postaholic Featured Poster

You can use ProcessStartInfo class to help you I am attaching an example it could help

This example I wrote to help me to generate key file for com and com+ applications

public void GenerateKeyFile(string path)
        {
            string commandLine = " \"C:\\Program Files\\Microsoft Visual Studio 8\\SDK\\v2.0\\Bin\\sn.exe\" -k ";
            ProcessStartInfo PSI = new ProcessStartInfo("cmd.exe");
            PSI.RedirectStandardInput = true;
            PSI.RedirectStandardOutput = true;
            PSI.RedirectStandardError = true;
            PSI.UseShellExecute = false;
            Process p = Process.Start(PSI);
            System.IO.StreamWriter SW = p.StandardInput;
            System.IO.StreamReader SR = p.StandardOutput;
            SW.WriteLine(commandLine + path);
            SW.Close();
        }
Ramy Mahrous 401 Postaholic Featured Poster
public void YourMethod([b]int[] arrOfInts[/b])
{
//your code goes here..
}
Ramy Mahrous 401 Postaholic Featured Poster

but all in all MSDN is the best for ever, I didn't learn C# from a book, everything I look at MSDN and some methods documentation and some trying...

Ramy Mahrous 401 Postaholic Featured Poster

I recommend Inside C# and How to program

Ramy Mahrous 401 Postaholic Featured Poster

First Withdraw shoud be public and some methods too

public Withdraw(int account, int amount)
{
Account.numberOfWithdrawal++;
..... // rest of code
..... // rest of code
}

I see you hardly need to read in OOP before programming with C#, you won't do true projects with C# before fully understanding the concept of OOP.

Ramy Mahrous 401 Postaholic Featured Poster

each withdraw increment the numberOfWithdrawal

Ramy Mahrous 401 Postaholic Featured Poster

Thanks :)

Ramy Mahrous 401 Postaholic Featured Poster

[ComboBoxName].Item.add(....)

Ramy Mahrous 401 Postaholic Featured Poster

define your users and from user properties define "User mapping" to set and remove some privilages

Ramy Mahrous 401 Postaholic Featured Poster
class XYZ
{
string str;
public string Str
{
get { return str; }
set { str = value; }
}

public XYZ(string str)
{
this.str = str;
}
}
Ramy Mahrous 401 Postaholic Featured Poster

Show us your effort to help you, friend! your question is straightforward!
You just need to read about if else in C#.

Ramy Mahrous 401 Postaholic Featured Poster

So your new question is how to pass a value (text) of the textbox in a form to another form (which has the control you want to change its text??!!)

Ramy Mahrous 401 Postaholic Featured Poster

Control Text or control Name ????
if you've button you can change its text by
yourButton.Text = "lmlmalaa";
please clearify your question

Ramy Mahrous 401 Postaholic Featured Poster
Ramy Mahrous 401 Postaholic Featured Poster

Yes, you can!
OnSpecificEvent(....)
{
[Control].Name = "new name";
}

Ramy Mahrous 401 Postaholic Featured Poster

There are third party controls for charting and they are integrated with .net, search and play with them.

Ramy Mahrous 401 Postaholic Featured Poster
Ramy Mahrous 401 Postaholic Featured Poster

On your application or generally??

Ramy Mahrous 401 Postaholic Featured Poster

try to run your application as administrator and feed me back!

Ramy Mahrous 401 Postaholic Featured Poster

You can't add two bytes!

minigweek commented: Ok, thanks!But thats bit illogical! lolz! +1
Ramy Mahrous 401 Postaholic Featured Poster

I am sorry, I don't know abo Oracle please put your question at http://www.daniweb.com/forums/forum129.html
and you'll got a lot of replies
Thanks

Ramy Mahrous 401 Postaholic Featured Poster

Look, Client sends to Server some messages, right?!
And Server has OnReceive method that raises when it receives new messages, right?!
Server can parse the message, so we can append any message any string and let the server parse it and according to the string, server take an action, let's say
1-
Client sent this message "file I am daniweb user"
Server received this message, then it parsed it and switch
case "file":
SaveFile(string);
2-
Client sent this message "reply I am daniweb user"
Server received this message, then it parsed it and switch
case "file":
SendClientMessage(string);

and so on..

Ramy Mahrous 401 Postaholic Featured Poster

You add reference to COM library, but no visual design shown unless COM library contains visual control. like flash player, media player once you add it on your form it shown, but some libraries does not contain any visualization, so you won't be able to see them.

Ramy Mahrous 401 Postaholic Featured Poster

Sure, you do something wrong! send me the code ramymahrous@gmail.com

Ramy Mahrous 401 Postaholic Featured Poster

Crystal report reports can be merged in your application (You don't need to call report from Server) just connect to your Oracle DB Server.

Ramy Mahrous 401 Postaholic Featured Poster

No difference instead you put A4 paper put envelop, just put data in organized way, say address on top right .... or you can use MS Word envelop template and integrate with MS Word via VSTO to put each field in its place.

Crystal report: is a tool for designing reports and complicated one also, can viwed inside Windows or Web-based applications.

Ramy Mahrous 401 Postaholic Featured Poster

You can't call method from SP, but verse is correct.

Ramy Mahrous 401 Postaholic Featured Poster
Naruse commented: thx +1