April 11th, 2012 02:03 PM
sorry but no one is interested to download an exe file. If you want help zip the project after removing all data in the bin and obj folder so there is no exe dile included into your project and add...
April 11th, 2012 01:47 PM
wow, where did he find that old one and brought it up to present time?
hehe I didn't look at the date, I simple solved it showing the code :D
April 11th, 2012 03:05 AM
I attached the code into here:ehh:
April 11th, 2012 02:50 AM
TTake a toolstrip and place it wherever you want it and align it on the left side vertically. Then add some buttons to it
when thios is done use the codeview of the method InitializeComponents()...
April 11th, 2012 02:26 AM
As you are a newbie in Cä first I would recommand to read a good bookabout C#
I'm sure there are lots of them available on the web.
Learning something like a language starts with knowing about...
March 29th, 2012 04:23 PM
Thx !
I looked to your program and saw yor problem
]
privatevoid typepage_Load(object sender, EventArgs e)
{
if (parent != null)
March 27th, 2012 08:53 AM
Sorry I didn't get your idea. Maybe zip what you already have and post the zupped code Maybe when I test your code I'll get the idea behind that code.
Is the maonForm an MDI window? what isthe forms...
March 26th, 2012 04:25 PM
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
private BatchInfo info;
/// <summary>
/// Constructzor
/// </summary>
public...
March 26th, 2012 03:17 PM
I would hide menue points that are not used in a given form. When some changes occur and the other menueheaders are needed, then I would make them visible. Different buttons in a menue I would...
March 26th, 2012 03:10 PM
Sorry if you only delete the errormessage and recompile you will still get the same erormessage you really need to go to the click event in the design view and there deleting the event delegate so...
March 22nd, 2012 07:02 PM
This error is quite clear you unfortunatly created a click event by doing some clicks in the enviroment and when you delete the click events delegate you also need to delete the line where this...
March 20th, 2012 09:25 AM
class AllUsers{ // Ok you are un class AllUsers
public void AllUsers_Load(object sender, EventArgs e)
{
// Here you are creating a totally other class
// This class has no link...
March 20th, 2012 08:38 AM
Simple use the Excel classes by adding them to the project. Which one depends on what excel file it should create e.g. Excel 2003 or 2007
The open command can open the file and then save it as...
March 20th, 2012 04:11 AM
Hi !
There arer different ways you may get an error when using that code, because in the easiest way it may happen when one of the textboxrd idt empty!!! Or if you have an entry containing an alpha-...
March 18th, 2012 02:47 PM
Like already Cimperiali told you there is more to be known about that to help you. For giving you correct advice I wanted to see that codeparts where you are actually working on. But what I got is...
March 18th, 2012 02:40 PM
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.OleDb;
using System.Data;
namespace Connect2
{
class ConnectInfo
March 18th, 2012 02:14 PM
Maybe, but I cannoz find even one line of code of what you are describing here
March 16th, 2012 03:52 AM
The problem is I cannot find any of the code you have already shown here in previous topics in the code you sended me. Even the names of that forms are not existing maybe thhey all are derived from...
March 15th, 2012 11:13 AM
private void solutionPanel_MouseHover(object sender, EventArgs e)
{
Intermediate intermediate = new Intermediate();
DialogResult dialogues =...
March 15th, 2012 04:05 AM
click to my name and write me an email. Sendd the file that way
March 14th, 2012 03:05 PM
You did an error The zip file only contains the dln file nothing else But you should dsend all teh application including fatabase only not including any file located in the bin or object folder,...
March 13th, 2012 10:53 AM
int counter = 0; define this in the header of the class (panel or form)
// in the event delegate where you want to count do the following
if(rolePanel.Controls !=null){
...
March 12th, 2012 01:15 PM
private void linkUser_Click(object sender, EventArgs e)
{
if(circumstancePanel.Controls!=null){
for (int i =...
March 11th, 2012 05:13 AM
Sorry firoz, but this is not C# !!
Saeed:
Are you trying to catch Folders of the directory and wanting to know if they are visible on the screen ?
Whats the purpose of that can you tell a bit...