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!

Search results for query: *

  • Users: VBakias
  • Order by date
  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...
  16. VBakias

    Exiting an If statement

    Errr. ? if/then statement is not a loop so if the expression if false it exits... If <Expression> Then ' code for true value Else ' code for false End If
  17. VBakias

    automating google results for pages

    You can load the google.com in a webbrowser. Before this, open its source code and find the names/ids of the textfield and the search's button. Then do smt like: webbrowser1.document.all("textField's name/id").Value = YourTypeInText webbrowser1.document.all("SearchButton's Name").Click, To raise...
  18. VBakias

    msgbox function and non-modal form

    If the msgbox function is in the main form then the main form will and must appear, and the modal output box (messagebox) will appear. To display messages the way you want, you could create a form; frmError with labels etc.. and use it as msgbox. Hope this helps
  19. VBakias

    How to assign Object from textbox in VB.NET?

    CObj(object As Expression) As Object But not sure enough
  20. VBakias

    WebBrowser Submit Problem

    I'm glad that my engish is/are quite good, but i was born in greece... I'm also glad that you say i helped a little bit while i am not a proffessional yet. Peace

Part and Inventory Search

Back
Top