CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: ken4ward

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    6,842

    Servlet throws error on compilation

    Please I am getting this error when I try to compile a web application in Eclipse. what am i doing wrong? kindly share your professional advice. Thanks. as a newbie to Spring-hibernate application i...
  2. Replies
    2
    Views
    655

    date only to be selected

    sqlCommand = new SqlCommand("SELECT date FROM Transactions", sqlConnection);
    sqlDataReader = sqlCommand.ExecuteReader();
    while (sqlDataReader.Read())
    ...
  3. Replies
    1
    Views
    1,353

    Select date from database

    //DateTime date= DateTime.Parse(maskedSearch.Text);
    sqlConnection.Open();
    sqlDataAdapter = new SqlDataAdapter("SELECT * FROM Transactions...
  4. Replies
    0
    Views
    1,029

    Deploy C# application with database(.mdf)

    Please kindly help me spell out how to deploy C#(Window desktop) application with database of .mdf extension.
  5. Replies
    8
    Views
    1,785

    Re: Compare double value of stopwatch

    private void comboBoxItemsforAlarm_SelectedIndexChanged(object sender, EventArgs e)
    {
    //stopWatch.Start();
    double doubleStopWatch = Convert.ToDouble(stopWatch.Elapsed.Hours...
  6. Replies
    8
    Views
    1,785

    Re: Compare double value of stopwatch

    I really appreciate your contributions, but could not still figure it out.
    Erendar, please can you just add the code so that I can understand fully what you are saying. Thanks. go bless in Jesus...
  7. Replies
    8
    Views
    1,785

    Re: Compare double value of stopwatch

    It seems not to be working either, please help!
  8. Replies
    8
    Views
    1,785

    Compare double value of stopwatch

    private void comboBoxItemsforAlarm_SelectedIndexChanged(object sender, EventArgs e)
    {
    stopWatch.Restart();
    double doubleStopWatch = Convert.ToDouble(stopWatch.Elapsed.Hours +...
  9. Re: using variables within 2 different methods

    Thanks. It's may be a mis-use of language. What I mean is if I declare them outside the the methods they are now, I'll not be able to assign value to them. Thanks.
  10. using variables within 2 different methods

    private void timerAlarm_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
    {
    if (comboBoxItemsforAlarm.SelectedItem == null)
    stopWatch.Stop();
    ...
  11. Replies
    2
    Views
    1,569

    Re: Add controls from one panel to the other

    public void rolePanelAdd() {
    if (rolePanel.Controls != null)
    {
    foreach (CheckBox checkRole in rolePanel.Controls)
    {
    if...
  12. Replies
    2
    Views
    1,569

    Add controls from one panel to the other

    class AllUsers
    public void AllUsers_Load(object sender, EventArgs e)
    {
    new Insert().InsertMe();
    }
    ...
  13. Re: Assign checkBoxes values to clicked radiobutton

    Thank you very much sir. How was the weekend? I'll do as you instructively advised.
  14. Assign checkBoxes values to clicked radiobutton

    class LinkWindow{
    public void linkUser_Click(object sender, EventArgs e)
    {
    AllUsers all = new AllUsers();
    all.Show();
    ...
  15. Replies
    1
    Views
    1,325

    Get checkbox label

    try
    {
    sqlConnection.Open();
    SqlCommand sqlCommand = sqlConnection.CreateCommand();
    sqlCommand.CommandType =...
  16. Replies
    27
    Views
    4,439

    Re: [RESOLVED] iteration from the database

    It is still the same, the only thing is that I have changed some names in it. This is the main project. Thanks.
  17. Replies
    3
    Views
    1,217

    Re: if statement with mousehover event

    private void solutionPanel_MouseHover(object sender, EventArgs e)
    {
    Intermediate intermediate = new Intermediate();
    DialogResult dialogues =...
  18. Replies
    3
    Views
    1,217

    if statement with mousehover event

    private void solutionPanel_MouseHover(object sender, EventArgs e)
    {
    Intermediate intermediate = new Intermediate();
    DialogResult dialogues =...
  19. Replies
    27
    Views
    4,439

    Re: [RESOLVED] iteration from the database

    private void solutionPanel_MouseHover(object sender, EventArgs e)
    {
    Intermediate intermediate = new Intermediate();
    DialogResult dialogues =...
  20. Replies
    27
    Views
    4,439

    Re: [RESOLVED] iteration from the database

    The files are bigger that the forum required so it gives me an error of file too big whenever I want to upload to the forum. Is there any better way I could do it? Thanks. Goodmorinig.
  21. Replies
    27
    Views
    4,439

    Re: [RESOLVED] iteration from the database

    On this project I have
    1. 10 tables in LinksApplication database
    2. 10 forms which could be selected from the combobox on LinkUser form
    3. Each 10 forms can insert, update, delete from the...
  22. Replies
    27
    Views
    4,439

    Re: [RESOLVED] iteration from the database

    int counter = 0;
    Control control = new Control();
    if(rolePanel.Controls !=null){
    if(control.GetType()==typeof(CheckBox)){
    ...
  23. Replies
    27
    Views
    4,439

    Re: [RESOLVED] iteration from the database

    I am on it now. Heartily say thanks for your good contributions.
  24. Replies
    27
    Views
    4,439

    Re: [RESOLVED] iteration from the database

    public void personPanel_Click(object sender, EventArgs e)
    {
    string DBConnection = "Data Source=.\\SQLEXPRESS;AttachDbFilename=|DataDirectory|\\LinksApplication.mdf;Integrated...
  25. Replies
    27
    Views
    4,439

    Re: [RESOLVED] iteration from the database

    int rowsPerson = dataSet.Tables["Person"].Rows.Count;

    int count = 0;
    RadioButton[] personRadio = new RadioButton[rowsPerson];
    foreach (DataRow...
Results 1 to 25 of 48
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured