Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by VBakias

  1. VBakias

    How Do I Launch Internet Explorer?

    But you can't assign a url. It will load the home page. Else do what i said in my first post.
  2. VBakias

    How Do I Launch Internet Explorer?

    Shell "iexplore", <WindowState> If it causes an error then: Shell "iexplore.exe", <WindowState>
  3. VBakias

    How Do I Launch Internet Explorer?

    Project -> References... find the "microsoft internet controls", check it and hit ok. Then write this code: Dim myInetExp As New InternetExplorer myInetExp.Navigate "siteURL" myInetExp.Visible = True Thats all.
  4. VBakias

    Calling a function from a function

    Maybe you should add the keyword "Return
  5. VBakias

    VB.net Sub Main problem

    Is the application type set to windows application?? If there is only the sub main it must be "Class Library
  6. VBakias

    VB.net Sub Main problem

    Project -> <Proj.name> Properties -> Common Properties @ General. Startup object has the forms and the sub main. If your app consists of many projects then right click on the project that contains the startup form you want -> Set as startup project, and then clarify (shown above) the startup...
  7. VBakias

    how to get rid of excel

    I wish the excel sheet not to be available. Anyway... Example: If i create a crystalreport project and compile it, the exe file will contail the report (.rpt file). I had thought of somehow to create the same interface of the excel's sheet as a crystal report. Then fill in the user data and...
  8. VBakias

    how to get rid of excel

    andreas, i somehow will run this code. I'll have to run it every time so to fill the data table... so i need the excelsheet at any case. Please tell me i'm wrong
  9. VBakias

    how to get rid of excel

    Tnx, i'll try this as soon as possible
  10. VBakias

    Sub which uses Page class not recognized

    I'd add this code in a module
  11. VBakias

    List problem

    goto asp.net forum
  12. VBakias

    how to get rid of excel

    Tnx for the reply. If it is not trouble for you or anyone else, i'd need some help on this. I've never worked with databases, or better data* According to your post, excel's installation is not required?
  13. VBakias

    how to get rid of excel

    Hi, you did not understand me. :) I want to print a page. I'll use excel to create the interface of it because it is very simple and with excel i can create a very good to_be_printed form. So my app will need this xls file to open it add data to some cells and then print it (and quit...
  14. VBakias

    force typing in all caps?

    Simply change the property "CharacterCasing" of the textboxes from Normal to Upper. Hope this helps
  15. VBakias

    how to get rid of excel

    Hi all I 'm about to start an app that the user will enter some text and numbers. There is also a mask that i've made with excel. The purpose of the app is: As all data are valid they will be entered in the excel sheet and printed. This requires user to have excel installed on the pc. Is...

Part and Inventory Search

Back
Top