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

Search:

Type: Posts; User: mtn*rain

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Re: Book Manager - cannot add and search book

    Got it working now.....Thanks for all the help. You all are great!!
  2. Re: Book Manager - cannot add and search book

    I have taken booklist out and put in the mgr. I am having trouble filling the interface with the information from the searchbook now though. It enters the method but clears the gui instead of pulling...
  3. Re: Book Manager - cannot add and search book

    I have changed it to this. It still appears as though I am saving but will not retrieve anything. Says no record found.

    Think it has something to do with the BookGUI method searchbook().
    public...
  4. Re: Book Manager - cannot add and search book

    I have taken care of the exception. I guess I am lost as to where to use Book or String.
  5. Re: Book Manager - cannot add and search book

    public interface IBookSvc extends IService
    {
    public final String NAME = "IBookSvc";

    void storeBook(Book bookx) throws DupBookException;
    Book retrieveBook(String isbn);
    }

    This shows...
  6. [RESOLVED] Book Manager - cannot add and search book

    Having an issue with my code. When I try to add a book, it appears that it is added but when I do a search for it, it says no records are found. Not sure where the problem might be, but I figured it...
  7. Re: Gridview - Delete and Edit button not working

    Does anyone know???
  8. Re: [RESOLVED] Gridview - Delete and Edit button not working

    Moved to C#, sorry.
  9. Gridview - Delete and Edit button not working

    I have a gridview with an object data source. I have the edit and delete button on each row but cannot get either one of them to work. I do not receive an error, it just doesn't delete. Refreshing...
  10. [RESOLVED] Gridview - Delete and Edit button not working

    I have a gridview with an object data source. I have the edit and delete button on each row but cannot get either one of them to work. I do not receive an error, it just doesn't delete. Refreshing...
  11. Re: Comparing entered value to a value in Generic List

    Thanks Arjay! Trying to figure out what is going on with the different interfaces, implementations and managers has got me confused as to how to identify different things and what to pull when I...
  12. Re: Comparing entered value to a value in Generic List

    I am trying to take a value that was entered, ensure that the ISBN entered is not already in the file and if not, add it.
  13. Re: Comparing entered value to a value in Generic List

    I have redone this but now, when I hit Submit, nothing at all happens. Any ideas, plz?


    IList<Book> listbooks = new List<Book>();
    Book book = new...
  14. Re: Comparing entered value to a value in Generic List

    I think what I am doing is comparing the same thing with this:
    foreach (Book A in listbooks)
    {
    if (listbooks.Contains(A))

    Because each time...
  15. Re: Comparing entered value to a value in Generic List

    I am thinking I am calling something wrong because when I add a book, it stills says it already exists yet the list is empty.


    IList<Book> listbooks = new List<Book>(); ...
  16. Re: Comparing entered value to a value in Generic List

    I have tried that but didn't work. Will try again....
  17. [RESOLVED] Comparing entered value to a value in Generic List

    I am trying to take a value that was entered and compare part of that to what is in the Generic List. Book has several fields - isbn, title, status, etc.
    I want to compare the isbn that was added to...
  18. Re: Not able to delete object from bin

    OK, I got the delete working by adding the CreateBook that has the savestream in it. Now I just have to figure out why it isn't adding each book i enter, instead just overwriting the last with the...
  19. Re: Not able to delete object from bin

    When I add a book, it will update the Book.bin with what I have added. Just checked though and it appears as though it isnt saving each one, just the last one that I entered. So, will need to look at...
  20. [RESOLVED] Not able to delete object from bin

    I have added a 'book' and am trying to delete that book from book.bin. It goes through the code and says it is deleted, but it hasn't actually deleted it from the book.bin file. The delete is based...
  21. [RESOLVED] Not able to retrieve and compare value from list

    Trying to do a search on a windows form on ISBN. When I do the search, it does not locate the value, although the bin folder does show the value in there.



    //IList<Book>...
  22. Re: Trying to get value from one form to populate in another form

    Thank you all! I have made the change and plan to read up on the IDisposable for future reference. You guys are great :-)
  23. Re: Trying to get value from one form to populate in another form

    Wow!! You are awesome!!! Thanks so much, that works perfectly (almost) :-) Just need an exclamation but I can do that.
    Again, thank you so much!!
  24. Re: Trying to get value from one form to populate in another form

    I start with the NameForm. This asks for first and last name. I hit Submit and WelcomeForm comes up. One this form, there is a label that should fill with the fullname from NameForm.
    What it is...
  25. [RESOLVED] Trying to get value from one form to populate in another form

    I am trying to get a text value from NameForm and pull it in Welcome as a label value.
    What I have so far, when the Welcome page comes up, it does not give the value of the text but if you click on...
Results 1 to 25 of 27
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured