Search:

Type: Posts; User: Jseb

Search: Search took 0.00 seconds.

  1. Thread: Database Access

    by Jseb
    Replies
    6
    Views
    2,411

    Here what I have for code; private void...

    Here what I have for code;


    private void btnLogin_Click(object sender, EventArgs e)
    {
    string connectionString = @"Provider=Microsoft.ACE.OLEDB.12.0;Data...
  2. Thread: Database Access

    by Jseb
    Replies
    6
    Views
    2,411

    Hmm yeah never mind about the constructor. Here...

    Hmm yeah never mind about the constructor. Here the question I have currently I am making a login access form and the code I have his has follow:


    // Creates a new instance of a person
    ...
  3. Thread: Database Access

    by Jseb
    Replies
    6
    Views
    2,411

    Where should i post this code??? in the...

    Where should i post this code??? in the constructor??
  4. Thread: Database Access

    by Jseb
    Replies
    6
    Views
    2,411

    Database Access

    I am new to C# and to Visual Studio 2011.

    I am trying to learn C# and many things, and for example I am trying to make a login form, which on login attempt will make a connections to a database...
  5. Thread: C# GUI form

    by Jseb
    Replies
    3
    Views
    1,927

    Thanks. I knew i was missing something!!

    Thanks.
    I knew i was missing something!!
  6. Thread: C# GUI form

    by Jseb
    Replies
    3
    Views
    1,927

    C# GUI form

    I am simply wondering how can I create a GUI application that can resize also the control buttons. If the user decide to make the windows bigger or smaller I would like my textbox, buttons, etc.. to...
  7. Replies
    3
    Views
    1,520

    Thanks for the answer. Yeah it is a complex...

    Thanks for the answer. Yeah it is a complex program, i am trying to make a compiler. So just to be clear if understand the best way to define it would be this way?


    typedef struct typrec
    {
    ...
  8. Replies
    3
    Views
    1,520

    Pascal translation

    I am trying to translate a program from Pascal to C. However some statement in pascal confused me and i am not to sure what should I be using instead.

    The statement in question is:


    case form:...
  9. Replies
    14
    Views
    2,165

    I am making a compiler for a class, teacher is...

    I am making a compiler for a class, teacher is old school, i love c++, would of been done the project long time ago, but must be done in c. I appreciate the help, it was the way i was going just...
  10. Replies
    14
    Views
    2,165

    Sorry for wait, thanks for the reply I would say...

    Sorry for wait, thanks for the reply I would say the missing part would be this


    with typtab[ ttptr] do
    begin
    size := 1;
    form := scalarfrm
    ...
  11. Replies
    14
    Views
    2,165

    Thanks for the quick reply, and i dont think...

    Thanks for the quick reply, and i dont think pascal is old, my teacher only use that
    and apl2. But anyway how can i translate the following in c:





    typtab: array[ 0 .. ttsize](*type...
  12. Replies
    14
    Views
    2,165

    With Statement Pascal to C

    I am translating a program atm from pascal to c, but one statement i am facing is with.


    with typtab[ttptr] do
    begin
    ...
    end

    Now my question is how can i represent this in c, typtab is...
  13. Replies
    4
    Views
    995

    One thing i have noticed, in my coding is when...

    One thing i have noticed, in my coding is when doing a reference
    //printf("%s\n", reswrd[0]); it freeze, however when doing a reference
    //printf("%s\n", reswrd[1]); it works, is there something i...
  14. Replies
    4
    Views
    995

    I am not even trying to do a loop, atm int i;...

    I am not even trying to do a loop, atm

    int i;
    i = 0;
    printf("%s", reswrd[i]);

    but at the end i want it to do this


    do{
  15. Replies
    4
    Views
    995

    Referencing String Array

    Hi and thank for any help in this issues.

    I have a program who declare the following variables


    #define idbuffsize 256
    #define nreswrd 59

    char idbuff[idbuffsize];
    char* reswrd[59];
Results 1 to 15 of 15