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 SkipVought 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: *

  1. quovuz

    ActiveX wont show up

    Hi! Could anyone please assist me here. I have created an ActiveX control and I want it to display when my web page is loaded. This is my first time to do this. To see the page and give any comments/suggestions/tips/solutions, please see what i did here...
  2. quovuz

    toolbars in IE

    can anyone guide me as to how to prevent the toolbar of IE from displaying when I open a page on a new window? Thank you very much!
  3. quovuz

    Visual Basic 6 on the web (not .NET)

    hello Masali, i have experienced a similar problem a month ago. it is possible to put vb6 programs on the web. just convert your program to an ocx/dll then call it as an object in your html code. if you're familiar with macromedia flash, when you try to view the source code of the web page...
  4. quovuz

    is this possible? Modifying a table's structure

    hi! could you type the list of fields of all tables used with about 5 sample data each? my colleague here has an idea and would want to help out. you may send it to my email address at quovuz@yahoo.com and we'll get on it right away. :)
  5. quovuz

    text/char width

    dear vb5prgrmr, thank you. i will try that one. :)
  6. quovuz

    text/char width

    hello! can anyone please guide me as to how i can stretch text (like what the image control's stretch does with pictures)? thank you very much!
  7. quovuz

    relative file paths?

    it is possible using app.path, but when using this statement, the wav file(s) should be in the same directory or folders within the directory of your project. is it advisable? it depends on what you want to do. you should include the sound files while packaging it.
  8. quovuz

    Format a TextBox for Date Entry

    you could even try this one: private sub text1_lostfocus if isdate(text1.text) then text1.text = format(text1.text,"MM/DD/YYYY") else msgbox "Invalid date" text1.setfocus end if end sub
  9. quovuz

    rotate text like in corel

    i was able to find a code about rotating text from the net. but, being a slowpoke in math, i cant find the formula to achieve an effect similar to that of corel wherein as you type, the text that you entered "envelopes" a circular path. If you are familiar with this, your help will be...
  10. quovuz

    Passing Variables & Strings

    this is just an idea. i havent tried it yet. could your application pass command line parameters to your activex.exe? however, this would mean that your activex.exe will have to be aware of all the possible values it will acquire to run according to your plans. :)
  11. quovuz

    Active X Document EXE (Web Application)

    basically, this is what i am doing too. what i did was include a data control to my form, link it via code to my access database, then extract data via sql statements. this works well in our company intranet running under IIS. since it works well in our intranet, i guess it is also possible to...
  12. quovuz

    Rotating Images & Text

    How do i rotate images and text in VB6? Do I need to make API calls? And what API calls are these? Thank you very much!
  13. quovuz

    VB and Data Report

    hi! here's what you can do. - create three commands from the data environment for the three details tables - create another command from the data environment for the main table - from the property page of each command, link the three details table to the main table using the relation tab...
  14. quovuz

    this is my first time to do this an

    this is my first time to do this and a quick help would really be appreciated. i have embedded an ocx into my webpage. i have added the clsid:blahblahblah and the codebase. however, when i tried posting it on our intranet, the ocx wont show up. BTW, the ocx was created in vb6. please help...
  15. quovuz

    VB and Data Report

    if you're using a sql stmt, use the DISTINCT keyword. Otherwise, you could try manipulating the ff: - open the data environment - select the command in use - locate the grouping tab - select the field(s) that will be grouped again, what i really do is design the query (with the distinct...
  16. quovuz

    Making an ActiveX self-registering

    How do i achieve this? Making an activeX self-registering. i have read this from an article but it did not expound on it. please help.
  17. quovuz

    Error 75

    I have successfully created an OCX and embedded it in my web page. my ocx will access a table in my database then display an image associated to an entry in my table. however, i do have this error 75 (Path/File Access error) popping up. I dont know if my IIS configuration is wrong or if my...
  18. quovuz

    Data Report in VB

    no problem. :) anytime. :)
  19. quovuz

    Data Report in VB

    i also get that same problem most of the time when working with data reports. anyway, try this one. it works for me sometimes (especially when my instructor checks on my work). - open the connection (via data environment) - retrieve the data ( i use queries i created in access) - close the...
  20. quovuz

    How do i create a VB Applet?

    i want my executable program to run on the web. my program allows me to select a category(via a combobox named cboCategory), which in turn, fills another combobox (named cboImages). when i select an item in cboImages, the picture should appear via an image control. i cant do this in asp...

Part and Inventory Search

Back
Top