User Profile

Collapse

Profile Sidebar

Collapse
ericstein81
ericstein81
Last Activity: Nov 16 '09, 10:00 PM
Joined: Jul 10 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • ericstein81
    replied to How to open a window form ?
    I know this may not anwser your question completely but I have a program that will take information from VB.net to and ASP page using XML files.

    You can create a link to the debug file or .exe file.

    such as:
    Code:
    <a href="file:\\servername\pathtoflile\c:\program files\program.exe" style="color:Blue">Click Here</a>
    to get the debug file, go to your visual studio folder...
    See more | Go to post
    Last edited by Frinavale; Mar 31 '09, 02:04 PM. Reason: Added [code] tags. Please post code in [code] [/code] tags.

    Leave a comment:


  • Make sure that you are declaring a new instance of the DB connection. It may be hanging up because it is still open even though you are telling it to close. I was having a similar problem before.
    Code:
            Dim Conn As New OleDbConnection
    
            Dim connect As String
            connect = Application.StartupPath & "\login.mdb"
    
            Conn = New OleDbConnection(" connectionstring here
    ...
    See more | Go to post
    Last edited by Frinavale; Mar 26 '09, 01:58 PM. Reason: Added [code] tags. Please post code in [code] [/code] tags.

    Leave a comment:


  • ericstein81
    started a topic Save custom icon

    Save custom icon

    Hey guys,

    I have a program that creates text files (*.txt) on a user's computer. I was wondering if anyone knew how to save another icon file other than the normail .txt file icon. That way the file could be recognized easier by the user. Any help is appreciated.

    thanks,

    Eric
    See more | Go to post

  • ericstein81
    started a topic Reading from an XML document

    Reading from an XML document

    Hey all,

    I have a program that is saving information into and XML file that is later read from to continue the users progress. I am having trouble getting the reader to work without an error

    This is the code that I am having trouble with and below is the error. Thanks for the help!


    Code:
    Dim xmldoc As XmlDataDocument = New XmlDataDocument
     
    xmldoc.Load("please.xml")
    ...
    See more | Go to post

  • ericstein81
    started a topic save VB form at runtime

    save VB form at runtime

    I am having trouble making a save function that works at runtime. Ideally it should save the progress made on the form and allow for the user to open it up and continue their work.

    Any ideas on how to save the form to be reused? I have tried to save as a .vbp file and .exe but have had no luck.

    Thanks in advance.
    See more | Go to post

  • ericstein81
    started a topic VB conversion to ASP

    VB conversion to ASP

    I am working on a project with VB 2005 that will use VB as a UI to create webpages. I wanted to know if its possible to convert a VB file to ASP webpages (take data from VB form to be displayed online with ASP). Can this be done? Sorry if this is confusing, and thanks in advance.
    See more | Go to post

  • ericstein81
    started a topic VB 2005 resizing a textbox at runtime

    VB 2005 resizing a textbox at runtime

    I am running a program that needs to allow the user to be able to change the size of a text box at run time. I know I need to use the MouseDown, mouseMove, and mouseUp events. I just need some help with the coding to send the information. Any help will be greatly appreciated.
    See more | Go to post

  • ericstein81
    started a topic Creating a operable toolbar in VB

    Creating a operable toolbar in VB

    I am working on a project that requires a toolbox that is active in the form. I ideally want to create a drag and drop operation with the tools like the toolbar for VB, where one can click an item and drag it onto the form. I want to run a program that will allow for a toolbar to come up when i run the form and allow the user to drag and click the tools i have availble through the form. I'm not asking for a complete code...just an idea of how to...
    See more | Go to post

  • ericstein81
    started a topic how to traverse a tree
    in C

    how to traverse a tree

    I need to traverse a binary search tree and be able to give an output of how many leaf nodes there are, and how many leafs have one child and how many leafs have two children. Im not asking for a code just the general idea of how to process the information. Thank you
    See more | Go to post

  • ericstein81
    replied to sorting a link list
    in C
    Thank you Dreea. It was having a problem with sorting the last link on the list at first, but i got it to work.
    See more | Go to post

    Leave a comment:


  • ericstein81
    started a topic sorting a link list
    in C

    sorting a link list

    I have written a program and am having trouble with the bubblesort... i get very confused on it and am not too familiar with link lists in the first place. The link list runs succesfully when i dont have the bubble sort in the program and it does what its supposed to do. However, i need to sort both list. if i just have some clarification on what to do with my bubble sort on the first list i can figure it out on the second. I understand there is...
    See more | Go to post
    Last edited by sicarie; Aug 28 '07, 12:48 PM. Reason: Code tags.

  • ericstein81
    started a topic using multiple queues
    in C

    using multiple queues

    I am trying to write a program that uses three queues for inputs of numbers. The problem i am having is I am not quite sure how to designate the seperate queues. can they be named as queue(a), queue(b) and queue(c)? how can i define the different queues for the compiler to understand. Sorry if this is confusing, thank you
    See more | Go to post

  • ericstein81
    replied to i am having trouble with arrays
    in C
    Thank you Scruggsy, the program is running now. i forgot to mention that the data file used had only six names with individual payrolls. Thanks for your help...
    See more | Go to post

    Leave a comment:


  • ericstein81
    started a topic i am having trouble with arrays
    in C

    i am having trouble with arrays

    I have tried to develop a code using arrays and void functions to take the current earnings of employees and using it to calculate their future income in ten years. This was performed by a 8% percent increase every year. below i've posted my attempt and for some reason the code will compile successfully however, when trying to run the program there are errors or bugs. If i can get any help it would be greatly appreciated.

    Ric712: [code=cpp]#include...
    See more | Go to post
    Last edited by sicarie; Jul 10 '07, 12:59 PM. Reason: Code tags
No activity results to display
Show More
Working...