15,668,335 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View Python questions
View Javascript questions
View C++ questions
View Java questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by SalouaK (Top 25 by date)
SalouaK
29-May-13 5:58am
View
Did you try to get the information of the file usinf FileInfo ?
SalouaK
29-May-13 4:33am
View
Thank u lot that's exactly what i was looking for :)
SalouaK
29-May-13 4:17am
View
without reconnect
SalouaK
28-May-13 11:17am
View
I did write a function , i will edit my question so u will be able to see it, but i stii have the same issue , i have to connecte for everyWebrequest, is there a way to send all the files but without connect and deconnect ?
SalouaK
28-May-13 8:09am
View
yes i think so to, i said i can not use asynchronous function , i need to only send a file a time and when the upload is finished go to the next file ....
SalouaK
28-May-13 7:56am
View
No i can't uploaded asynchronously , I need to send only one file at time
SalouaK
30-Apr-13 13:38pm
View
Yes, you are right , i reaserched the reserved words for dbase, and level is one of them! do you have anyidea how to escape it?
SalouaK
8-Apr-13 7:13am
View
You just need to write a code hat create a file and use a ';' to sperate the data, and name the fime %.csv, the result file will be able to open up using Excel
SalouaK
2-Apr-13 7:11am
View
I updated my question and added the connection string to it
SalouaK
18-Mar-13 13:08pm
View
oh! you're right, I was using the one without the third parameters
SalouaK
18-Mar-13 12:50pm
View
But you should change your way of initialising the params, it got depricated since VS2010
SalouaK
18-Mar-13 12:48pm
View
I couldn't implement phil.o way , I just cleared my parameters in every loop and then i add the params
SalouaK
18-Mar-13 12:33pm
View
You're right, and Ia m going to change my code to use parameters instead of injecting values directly.
SalouaK
18-Mar-13 12:13pm
View
This method are depricated ! that why i used command.Parameters.AddWithValue();
SalouaK
13-Sep-12 9:39am
View
I will try it! I will keep in touch if it worked or not :)
SalouaK
13-Sep-12 9:21am
View
Yes to both questions , that exactly what i want to do !
SalouaK
13-Sep-12 9:18am
View
I don't really get what you want to say; like Bill says I'm new comer to The .Net World :)
SalouaK
13-Sep-12 9:14am
View
Not really Just couple of Labels and that's it
SalouaK
13-Sep-12 9:08am
View
I just need a button that will switch panels , the problem is I need it in every panel, and i don't know in advance how many panels i am gonna create ,the user is the one who wl indicate that, here in the code above i put the number 5 , it's not really 5 panels , i just put it so the idea will be clear. I hope that you have understand a bet more what i want to do
SalouaK
13-Sep-12 7:13am
View
Well, I am still stuck in the same place! I still can't switch panels with a button,
I tried goto and Continue like that :
<pre lang="c#">
b1.Click += delegate
{
current += 1; MessageBox.Show("Button Cliquée" + current);
goto outer;
//panel[current].Visible = true;
};
outer :
if (current != x)
{
x++;
continue;
}
</pre>
but i get errors , i know that because the outer is out the function but i run off ideas.
SalouaK
13-Sep-12 6:58am
View
My fault , it's my first time using this website to post a question , so please forgive me for my neglect.
SalouaK
13-Sep-12 6:57am
View
I want to do the exact same thing you did , Please HELP me , I am Lost !
SalouaK
13-Sep-12 6:55am
View
I didn't get my answer BillWoodruff, I tought i did , till i test it and it didn't work out . I marked as solved get i reallu thought that will work out. Sorry .
SalouaK
13-Sep-12 6:44am
View
Salam Bill, (it's Miss and Not a Mr :p)
I am sorry that I'm bet late, but i've been taken back by other projects ,
For your question here is my answers:
1)I've alredy detected that flaws and immediatly corrected and I am sorry i dodn't post my last Code, i should have done it before now.
2)
this.Controls.Add(panel[x]);
I didn't mean it as the panel1 is the container but the form itself. (I was using panel1 as test before and i forgot to deleted it from my program, please forgave my neglect)
3)I remove it , i should have put it before the loop. again neglect (I should have took some more coffee that day).
4) Iam just using it for the exemple so people will have a concrete idea about what i want to do.
5) Note taken .
I am really sorry for my poor english ,English is not my first langage neither my second.
and Thanks lot for your time and intrest. I hope you still want to help me because i really need some guidanceand very soon .
SalouaK
6-Sep-12 12:13pm
View
That exactly The problem I don't knwo how i am going to add his click event since there is a X button . but the button is correctly added to the panel[i]
Show More