Search:

Type: Posts; User: mixalissen

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    0
    Views
    1,451

    Transaction status

    try
    {
    conne = DbManager.getConnection();
    conne.Open();
    trans = conne.BeginTransaction();
    cmd = new SqlCommand(statement, conne, trans);
    ...
  2. Replies
    1
    Views
    1,953

    calling aspx from button event

    private void Button1_Click(object sender, System.EventArgs e)
    {

    }


    Suppose that I already am within an aspx page, how can I call another aspx???
  3. Thread: C# email

    by mixalissen
    Replies
    5
    Views
    4,452

    C# email

    I am trying to send email with this


    System.Net.Mail.MailMessage message = new System.Net.Mail.MailMessage();
    message.To.Add("[email protected]");
    message.Subject =...
  4. Replies
    11
    Views
    1,673

    So you tried the previous version link and it...

    So you tried the previous version link and it directs you to visual studio 2005???
    Because from my end I get visual c#, c++ etc but not visual studio. By the way forums are supposed to be helpfull...
  5. Replies
    11
    Views
    1,673

    what about 2005??? where can I download it...

    what about 2005??? where can I download it from???did the research but all I find is some tools or reports...where can I download the IDE from???
  6. Replies
    11
    Views
    1,673

    thanx man but what about MS visual studio...

    thanx man but what about MS visual studio 2005???Did not ask for ms visual studio express edition 2008
  7. Replies
    11
    Views
    1,673

    visual studio

    Does anyone have a link to download MS Visual studio 2005???
  8. Replies
    2
    Views
    1,403

    Does not work...It compiles but all I get is a...

    Does not work...It compiles but all I get is a press any key to continue...I want it to print the value from the XML
  9. Replies
    2
    Views
    1,403

    Configuration manager question

    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Configuration;

    namespace ConsoleApplication111
    {
    class Program
    {
    static void Main(string[]...
  10. Replies
    1
    Views
    1,090

    reading from xml

    using System.Configuration;
    using System;
    using System.Collections.Generic;
    using System.Text;

    namespace ConsoleApplication1
    {
    class Program
    {
    static void Main(string[] args)
  11. Replies
    1
    Views
    1,346

    configuration settings problem

    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Configuration;


    namespace ConsoleApplication1
    {
    class Program
    {
  12. Replies
    3
    Views
    1,818

    .net framework

    I downloaded microsoft visual c#2005. Does it come with the .net frame work or I have to download it to use its classes???
  13. Replies
    1
    Views
    1,447

    Simple db problem

    OleDbConnection thisConnection = new OleDbConnection("provider = microsoft.jet.oledb.4.0;data source = people.mdb;");
    OleDbCommand thisCommand = new OleDbCommand("SELECT ID FROM...
  14. Replies
    2
    Views
    44,803

    Is there a text area for c#???

    Is there something like a text area for a c# application where a whole document may be outputed?
  15. Replies
    11
    Views
    1,581

    So I MUST have a constractor right???

    So I MUST have a constractor right???
  16. Replies
    11
    Views
    1,581

    no default constractor ....

    #include "stdafx.h"
    #include<string>
    using namespace std;

    struct student1{
    const string name;
    const double salary;
    const string student1::getName();
    const double student1::getSalary();
    };
  17. Replies
    1
    Views
    4,707

    sorting a queue

    ok I know...I have already posted about sorting a linked list, and as anon said it would be better to use sort() to do this rather doing it yourself, it was a good practice though

    How about...
  18. Replies
    15
    Views
    2,062

    thanx elysia you were very helpful

    thanx elysia you were very helpful
  19. Replies
    15
    Views
    2,062

    Actually the above code is REALLY wrong...with...

    Actually the above code is REALLY wrong...with *iter + 1 or *iter++ you dont move the iterator, you just increment the value of the element by 1. SO WRONG...

    You were posting while I was posting,,...
  20. Replies
    15
    Views
    2,062

    if(*iter + 1 < *iter) { ...

    if(*iter + 1 < *iter)
    {
    (*iter + 1).swap(*iter);
    flag = true;
    ...
  21. Replies
    15
    Views
    2,062

    I am using lists just for learning purposes, not...

    I am using lists just for learning purposes, not for something specific. I am now trying to sort a list<int>, but I am having trouble using the iterator, this is what I have so far:


    for(int...
  22. Replies
    15
    Views
    2,062

    Hmmm, it seems that I cannot get an element from...

    Hmmm, it seems that I cannot get an element from a list with something like:
    list(2), or list.at(2)....Could not find anything in cpp reference, am I wrong. Do I really have to use iterator all the...
  23. Replies
    15
    Views
    2,062

    Linked lists

    Is there a header file for linked lists in c++ or do I have to implement one from scratch.

    I Java you can do:
    LinkedList<String> list = new LinkedList<String>();
    list.add("mike");
    .
    .
    .
    Is...
  24. Replies
    1
    Views
    6,790

    adding a compiler to netbeans

    How can I add a compiler to NetBeans?I have Visual C++ so I quess there already is a compiler in my system. I know I should go to tools-> options->C++ and add it from there but I dont know exactly...
  25. Replies
    21
    Views
    3,235

    I believe I did it... Well I thought so yesterday...

    I believe I did it... Well I thought so yesterday too, but I was wrong...
Results 1 to 25 of 44
Page 1 of 2 1 2