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

Search:

Type: Posts; User: Howdy_McGee

Search: Search took 0.02 seconds.

  1. Replies
    5
    Views
    1,163

    Re: Implementing a Heap

    Oh right, I need to initialize my array with capacity, whoops >.>
  2. Replies
    5
    Views
    1,163

    Re: Implementing a Heap

    I've debugged it in VS but it breaks when I assign
    heapData[currSize] = dataIn; in my insert. I haven't got to my remove yet but I imagine i'll run into the same problems. I set currSize to 0 in my...
  3. Replies
    5
    Views
    1,163

    Implementing a Heap

    So I'm going through and trying to do a recursive implementation of a Heap. I keep getting access violations for some reason on my sifts (_siftUp) - even though I'm trying to insert into sub[0]...
  4. Replies
    5
    Views
    817

    Re: Get Address of Line (Reading Files)

    I'm using string class.

    ifstream file;
    name = 'text.txt';

    file.open(name.data());
    while(getline(file, lnstr))
    {
    cout << file.seekg();
    }
  5. Replies
    5
    Views
    817

    Get Address of Line (Reading Files)

    If I'm reading a text file line by line, how do I get the byte address of the start of each line?
  6. Replies
    4
    Views
    960

    Re: Developing for 2.0

    I had tried your above solutions and it still allows me to use .NET Framework 3.5 controls. I was originally wanting to know if I could just make a default website in 2.0 - it seems all websites in...
  7. Replies
    4
    Views
    960

    Re: Developing for 2.0

    I tried that and it errors out even on default set up that Visual Studio Express 2010 gives you. Whenever I build a default website in 2.0 right off the bat I got a handful of errors on...
  8. Replies
    4
    Views
    960

    Developing for 2.0

    I am developing a website that needs to run on .NET Framework 2.0 - it sucks. I am working with Visual Web Developer Express 2010 and when I try ti compile my website in Framework 2.0 I get this HUGE...
  9. Replies
    4
    Views
    996

    Re: Web Config Not Cooperating

    :/ as it turns out the servers are not "up to date" their running .net framework 2.0 - does it really make that much of a difference though?
  10. Replies
    4
    Views
    996

    Re: Web Config Not Cooperating

    Well if I take a plain HTML/CSS website and open it w/ visual studio and add my webconfig file it should be fine right? Do I need to do anything special besides the ASP header <%@ Page etcetc.?

    Is...
  11. Replies
    4
    Views
    996

    Web Config Not Cooperating

    So i'm trying to take an existing HTML/CSS website and add a contact form right? I figure it would be easy but i'm having a few problems with the web config file. I keep getting a "customer errors"...
  12. Replies
    2
    Views
    1,309

    Re: ASP.NET not showing up

    Yeah I have .NET Framework up and running but still nothing has changed. Is there other possibilities?

    Should I save this website as a .htm?
  13. Replies
    2
    Views
    1,309

    ASP.NET not showing up

    Hi, I'm new to ASP.NET and I'm trying to view pages. I cannot get any of my ASPX pages to show up. I can get .htm pages to show up but that's about it. What's am I doing wrong?
    ...
  14. Replies
    3
    Views
    2,513

    Re: Simple Stopwatch Application

    If I use the timer object will I still need the Stowatch() class?
  15. Replies
    3
    Views
    2,513

    [RESOLVED] Simple Stopwatch Application

    Ok, so i'm trying to get back into the swing of C# and it's slowly coming back to me but I have a slight problem. I'm making a simple stop watch program that is supposed to print the time as it ticks...
  16. Replies
    12
    Views
    1,742

    Re: Strange Compiler Errors

    I like notepad++

    I would rather code in notepad++ than visual studio. Preference is all. And I tried google but there's no answer I can find.
  17. Replies
    12
    Views
    1,742

    Re: Strange Compiler Errors

    Notepad ++ and comand prompt. I don't see why there should be a difference...
  18. Replies
    12
    Views
    1,742

    Strange Compiler Errors

    namespace students
    {
    class Student
    {
    private int idNumber;
    private string lastName;
    private double gradePointAverage;
    public const double HIGHEST = 4.0;
    public const double LOWEST...
Results 1 to 18 of 18





Click Here to Expand Forum to Full Width

Featured