Ramy Mahrous 401 Postaholic Featured Poster

SOAP is a protocol used in WS, you don't need to know the structure of it, as .net manages protocol format when sending and receiving messages to/from clients
to know more about SOAP go to W3C community web site

Ramy Mahrous 401 Postaholic Featured Poster

I used it since the beta versions but I don't know if you can develop WPF, WCF, etc.. applications by the Express or not as I am using VSTS 2005/2008

Ramy Mahrous 401 Postaholic Featured Poster

you can, there is a windows API used to get the word on which the cursor exists.
you can see any open source dictionary that translates words whenever you move your cursor on like EasyLingo

Ramy Mahrous 401 Postaholic Featured Poster

do u mean that accept division on 4 without remaining??

for(int i=15; i<50; i++)
{
if( i%4 == 0)
Console.WriteLine(i); //prints number 
}
Ramy Mahrous 401 Postaholic Featured Poster

do you mean to assign html script to i.e. richtextbox on a web page from another web page
or sending html email to email address?

Ramy Mahrous 401 Postaholic Featured Poster

Just search on this in google!

Ramy Mahrous 401 Postaholic Featured Poster

userControl1.Height = X;
userControl1.Width = Y;

Ramy Mahrous 401 Postaholic Featured Poster

drop your code here all of your code

Ramy Mahrous 401 Postaholic Featured Poster

you don't execute your command!!!!!!!!!!!!!!!!!
execute it, if there is execption pass me it.

Ramy Mahrous 401 Postaholic Featured Poster

there is a login control supported in asp.net 2.0 and later

Ramy Mahrous 401 Postaholic Featured Poster

that's for sure, you don't execute your command

StrSQL.ExecuteNonQuery();
Ramy Mahrous 401 Postaholic Featured Poster

give us the exception

Ramy Mahrous 401 Postaholic Featured Poster

I think 600*800 and from properties you can choose to make the form maximized
WindowState->Maximized

Ramy Mahrous 401 Postaholic Featured Poster

I think after page render you can do that, I suggest to ask this question in web development forum http://www.daniweb.com/forums/forum18.html

Ramy Mahrous 401 Postaholic Featured Poster

I don't mean = new HashTable() I mean how to see it.
I tried it it works with me, check it again and make sure all classes call this server class have the same namespace or change the access modifier of the server class to public.

Ramy Mahrous 401 Postaholic Featured Poster

s/he didn't ask me to do something by anyway, s/he asked to return more than object I answered.
anyway thank you, sure I knew something new by your answer :)

Ramy Mahrous 401 Postaholic Featured Poster
servers.Default.ServersHashtable = new HashTable();
Ramy Mahrous 401 Postaholic Featured Poster

it's not returning more than object it's passing object by reference!!

Ramy Mahrous 401 Postaholic Featured Poster

you can use C# or JAVA
I got from your question you're confused to use which programming language but having some experience in VB and C would let you learn C# or Java in weeks

Ramy Mahrous 401 Postaholic Featured Poster

please tell me what the idea you got or the field you like AI, Image processing, etc and we'll working together to find an idea

Ramy Mahrous 401 Postaholic Featured Poster

please write your important code and surround it with

and the rest don't
really I could not read your question!!!!!

Ramy Mahrous 401 Postaholic Featured Poster

u don't need code anymore
but anyway if you want to write code in form resize event make height and width of the control == the height and width of the form.

you can solve this by anchor property

Ramy Mahrous 401 Postaholic Featured Poster
ShellExecute hWnd, "explore", "C:\whatever", _
    vbNullString, vbNullString, SW_SHOWNORMAL

I got it from http://vb-helper.com/howto_shellexecute.html

Ramy Mahrous 401 Postaholic Featured Poster
mfntPrint =  New Font("Arial", 14, FontStyle.Bold)
Ramy Mahrous 401 Postaholic Featured Poster

I don't uderstand you well but I think you can play with control properties Docking and Anchor

Ramy Mahrous 401 Postaholic Featured Poster

you can't except you turn into using Singleton pattern

Ramy Mahrous 401 Postaholic Featured Poster

you're welcome, I got that but I was about to say did u share the folder?

Ramy Mahrous 401 Postaholic Featured Poster

can you please give me the path you access

Ramy Mahrous 401 Postaholic Featured Poster

you can't return more than object with different data type
but may use yield it may help you.

Ramy Mahrous 401 Postaholic Featured Poster
class Connection
{
string connectionString = "your connection string";
 
public string ConnectionString
{
get { return connectionString;}
set { connectionString = value;}
}
}
 
class ConnectionUser
{
public string GetConnectionString()
{
return new Connection().ConnectionString;
}
}
Ramy Mahrous 401 Postaholic Featured Poster

Main form means when you close it that's mean you close the application.
1- MDI won't work in modal dialog mode.
2- User will go through the main form without looking to your login form.

what supposed to done is to run the main form you may hide it then run the login form after success login show the main form.

Ramy Mahrous 401 Postaholic Featured Poster

mmmm, thanks :)

Ramy Mahrous 401 Postaholic Featured Poster

jbennet, I don't understand you.

Ramy Mahrous 401 Postaholic Featured Poster

Microsoft Most Valuable Professional
http://mvp.support.microsoft.com/

Ramy Mahrous 401 Postaholic Featured Poster

I am asking if there is anybody MVP in our community (Daniweb) or anybody got it as s/he participates in our community?

Ramy Mahrous 401 Postaholic Featured Poster

if you are using VB go to VB forum and ask them you may find a lot of help
http://www.daniweb.com/forums/forum58.html

Ramy Mahrous 401 Postaholic Featured Poster

any business project you see it should save the data from users.
like HR department they need a program to show employees, delete one, insert one, update and/or reserve vacations..

Ramy Mahrous 401 Postaholic Featured Poster

I am using T-SQL but I don't know if my answer is right or wrong

Should you write AS after table name like

CREATE TRIGGER trigger_name
AFTER INSERT ON table_1
AS
....
Ramy Mahrous 401 Postaholic Featured Poster

Work with IE APIs

Ramy Mahrous 401 Postaholic Featured Poster

you layers is nice you don't need more!
any basic business project should have UI Layer, Business Logic Layer, and Data Access Layer.

what about if you need security on all the layers?

you should add layer cross cut on your layers (AOP)

what about you areee using Distrbutied database?

you should add after Data Access Layer a Layer called Communication Layer.

I think your architecture seems to be good you don't need more layers

Ramy Mahrous 401 Postaholic Featured Poster

before calling the method which compute the variance and the mean

string n = Console.ReadLine();
if( n == "y")
// exit
else
//parse and compute
Ramy Mahrous 401 Postaholic Featured Poster

there a project on Code Project like that
I think your main library is System.IO it used in such tasks

Ramy Mahrous 401 Postaholic Featured Poster

What's the exception please copy it here

Ramy Mahrous 401 Postaholic Featured Poster

That's for sure, let the main form to be the start and in it constructor call the login form after valid login close it, the application won't close.

Ramy Mahrous 401 Postaholic Featured Poster

I recommend some books like Inside C#
and really really if you have any programming experience C\C++, VB,... I recommend for you MSDN. the best resource I know till now.

Ramy Mahrous 401 Postaholic Featured Poster

and also you want to say for the compile time you've garbage value may = garbage value that's may do this warnings.
Hint: you should initialize your variables before using.

Ramy Mahrous 401 Postaholic Featured Poster

I though that you condition on the value of userGuess, that's not known in the compile time. so the warnings came from.

Ramy Mahrous 401 Postaholic Featured Poster

thanks for this information :)

Ramy Mahrous 401 Postaholic Featured Poster

initialize userGuess = 0

Ramy Mahrous 401 Postaholic Featured Poster