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

Search:

Type: Posts; User: PolishPaul

Search: Search took 0.05 seconds.

  1. Re: How to return an object of inherited class from abstract base class?

    Thanks,

    I was trying to avoid implementing it in each class... but Generics is the next chapter so I'll find a way then :)

    Thanks for the MemberInfo.Name tip!
  2. How to return an object of inherited class from abstract base class?

    So for practice i'm designing a class library of Animals - cow, chicken, pig, duck. I made my base class "Animal" abstract and the functions within abstract as well. Other animals simply inherit...
  3. Need example problems, beginner's projects - learning c# want to get hands on

    So I've been learning C# and going through a few books, some better than others, some go over object oriented design, others through the basics. I am lacking, however, in the fact that I'm not doing...
  4. Replies
    3
    Views
    912

    Re: SQLite search in DataSet

    I've seen an application where a task previously done with code, was accomplished completely with T-SQL stored procedures.

    Basically it was an application that used a DB, but just about all of...
  5. Replies
    1
    Views
    2,776

    Re: Web site Ripper (Copier) in C#

    I guess it would depend on the complexity of the site. If its a plain HTML site, then you can donwload the .html file (not view source). If its an ASP/PHP sort of a page, then the HTML is rendered on...
  6. Replies
    3
    Views
    912

    Re: SQLite search in DataSet

    I'm just getting started with this myself, but the first thing that comes to mind, is to do it using SQL queries, and maybe using it as a stored procedure. From what I've seen, doing DB tasks via SQL...
  7. Replies
    4
    Views
    2,405

    Re: Fire Off .exe On Remote Machine

    Nothing's impossible, we may just have to jump through flaming hoops to get there :D

    http://technet.microsoft.com/en-us/sysinternals/bb897553.aspx

    You can use psexec to run a process on another...
  8. Re: Understanding Interfaces - can someone tell me if i'm on the right track?

    I think I'm beginning to understand it - it is simpler than it sounds. I'm reading about this in another book with better terminology and I see what you're saying about it being more to do with...
  9. Re: Understanding Interfaces - can someone tell me if i'm on the right track?

    I don't see Interfaces do more than simply allow multiple inheritance in C#? Or am i missing something else?

    What I'm seeing is that we simply agree to implement an interface, and do so in a class...
  10. Re: How can I verify that a drive has been mapped

    I did this as a console project:



    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.IO;
  11. Understanding Interfaces - can someone tell me if i'm on the right track?

    So I'm studying C# with a Wrox book "Beginning Microsoft Visual C# 2008" and I'm trying to figure out this whole Interface thing...

    On page 199 we have an example:


    Cow myCow = new Cow();...
  12. Solved!

    Wow, awesome guys.

    Cjard,

    I was just using access (among others) since it came with the textbook i was using. Everything worked fine with 'manual' coding... I won't need to send you the code...
  13. RE: Simple DataBase in VB.net, not displaying or binding?

    Well, with the flood of help i got :( , i eventually solved this myself. It was pretty simple really - the studio offered to copy my DB to the solution's directory. This was not happening in fact......
  14. Re: I am unable to get this to work

    Did you make sure that the files are included in the project? Or perhaps that the studio is looking in the right folder? It seems like its just not finding/opening the file? Just a thought...
  15. Re: Simple DataBase in VB.net, not displaying or binding? Visual Studio 2003 vs 2005?

    Could anyone please try the Walkthrough from microsoft in VB.net (studio 2005) and see if it works??? I'm simply stuck! It works in other languages....
  16. Re: Need advice on what to study - Returning to programming

    I figure that VB will be easier/quicker to "produce" results. I'm actually much more familiar with C++, jut not the visual part. VB is sort of new to me, but agian, i'm able to 'crank out' some basic...
  17. Need advice on what to study - Returning to programming

    Long story short - Been in and out of programming (fun, school) and i've finally decided to put my head into it full throttle.:)

    I've decided to go the .NET way and perhaps learn MFC down the...
  18. Re: Simple DataBase in VB.net, not displaying or binding? Visual Studio 2003 vs 2005?

    Great thanks, i'll check it out.

    Can anyone get that sample to work? did i miss a stupid step?

    Update:

    So i just did the same exact thing except in C++... seems to work just as the...
  19. Simple DataBase in VB.net, not displaying or binding? Visual Studio 2003 vs 2005?

    Ok, so i'm trying to learn some VB.NET and i'm trying to go through some chapters in my textbook. I was previously working in Visual Studio .NET 2003 and now starting out with Visiual Studio 2005.
    ...
  20. Re: When do you go pro? What do employers look for in Entry Level

    aha, so Dilbert was right! :p
  21. Re: When do you go pro? What do employers look for in Entry Level

    :) Thanx,

    I'm definetly looking to learn Windows first of all, and how this whole OS works. This will make .NET much more understanable.

    I think the next area i wanted to concentrate is what...
  22. Re: When do you go pro? What do employers look for in Entry Level

    Thank you for the info. I'm sure its not an easy answer.. i mean, there's no simple way to answer the question. My curiosity is the level of expertise required.

    Being a new hire, what level of...
  23. Re: When do you go pro? What do employers look for in Entry Level

    I'm looking for a more quantifiable answer. I mean what skills are needed? What does an entry level position require from me? I'm trying to find out if i know enough.
  24. When do you go pro? What do employers look for in Entry Level

    My question is this.
    Having studied and played with programming for some time, when do i know i'm 'ready' to enter the paid world. How much skill do i actually need?

    I know quite a bit (books),...
Results 1 to 24 of 24





Click Here to Expand Forum to Full Width

Featured