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 Mike Lewis 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: dimsis
  • Order by date
  1. dimsis

    Datareport with summaries

    I have an access 2000 table with the following schema: noteid, auto increment techid1, integer techid2, integer techid3, integer vminutes, integer (the minutes the tech spend at clients place) notes_d, date (full date time the tech left to go to the client) notes_dback, date (full date time the...
  2. dimsis

    Convert date range to hours/minutes

    I need a function when you pass two dates (start and end date), it will return the hours and minutes passed in the hh:mm format. TIA
  3. dimsis

    List a week

    I have a table ( LINKS ) with fields: LINKTITLE, LINKDATE, LINKURL where LINKTITLE is nvarchar with links Titles, LINKDATE is a datetime with the date the record inserted into the table and LINKURL is an nvarchar with the site URL. What i need is a select query that groups and returns the...
  4. dimsis

    Can i fill the fields of a web form from VB code?

    I don't want to submit the form, i just want to AUTOFILL the form and IF the user wants to submit it or cancel or change some data i've autofilled, he/she can do it...
  5. dimsis

    Can i fill the fields of a web form from VB code?

    Thank you all for your answers, CubeE101 as i wrote in a previous message i don't want to use the webrowser control. In your second post, you got what i'm trying to do. I've already tried the SPY tool, but as i remember it had the same handle for ALL textboxes and textareas. What i really need...
  6. dimsis

    Can i fill the fields of a web form from VB code?

    Thanks for the suggestion Homersim2600, i don't think this is what i'm trying to do. I just want to do what google's toolbar AUTOFILL does, but instead of clicking from it's toolbar, i want to click an Autofill button from my visual basic form and fill the "target" IE window (form). (and...
  7. dimsis

    Can i fill the fields of a web form from VB code?

    No i have 'nt 5ilver5aracen. If you do find anything please post it here too...
  8. dimsis

    How can i change the forecolor or insert picture in an msflexgrid ;

    How can i change the forecolor or insert picture in an msflexgrid while i'm adding rows ? I'm reading a table from my database, and executing a recordset, then i add the rows into an msflexgrid control with: With rs Do While Not .EOF cnt = cnt + 1 MSFlexGrid1.AddItem...
  9. dimsis

    Pass values from iframe list to document week plan dynamic

    Also i need to remove (on the fly) an added line ... Then i want to submit all this data and write it to the database (i know how to do this, i only need all the added lines and text & values in form fields)
  10. dimsis

    Pass values from iframe list to document week plan dynamic

    That's perfect! I used a hidden form value to select a Day table. I also used a mouseover effect. I'm posting my code: weekplan.htm <style type="text/css"> <!-- /* week plan */ .WeekPlanCol { width:200px; height:1px; } .WPDates { font-size: 9px; color:#FF6600;} .WPText{ font-size: 10px...
  11. dimsis

    Pass values from iframe list to document week plan dynamic

    I have seven tables for each day of week like outlook and in a right panel an iframe with a list with text links. I need when anyone clicks on a text link from the iframe to dynamicaly add / pass (innerText?) the text into the selected day of week table. ------------------ (iframe)...
  12. dimsis

    Can i fill the fields of a web form from VB code?

    Thanks for the answer mmilan, if i write something that can help other users i always publish it as a freeware as you can see at www.code.gr/fir (and all other software listed in the left column). I developed FIR because i needed a fast method to right click an Internet Explorer image, and have...
  13. dimsis

    Can i fill the fields of a web form from VB code?

    .. (even if this is NOT what I need)...
  14. dimsis

    Can i fill the fields of a web form from VB code?

    As i already wrote, i need this to run in a client's PC. This means that i can tell the client what requirements are needed to run the application and that's inlcudes IE as the browser. But even if someone want to make something like what i need compartible with "every browser on the planet"...
  15. dimsis

    Can i fill the fields of a web form from VB code?

    I don't think there is a need for activex or session management. In theory if you find the "taget" window, for example with the findwindow API searching by it's title and give it the focus and then use sendmessage API to send text to the specific form fields.
  16. dimsis

    Can i fill the fields of a web form from VB code?

    First of all mmilan thanks for answering, what i want to do is to create an .exe that runs from the client and it just fill's some form form of an already opened browser window of the client. This means that the client has open for example IE, and he is in a url, for example...
  17. dimsis

    Can i fill the fields of a web form from VB code?

    I want to automatically fill all the fields of a specific form (using the form name) loaded in a browser (IE, Firefox etc) with predifined values, from Visual Basic 6. Is it possible? any example?
  18. dimsis

    After locked desktop&start with API in w98 doubeclick shows start menu

    I've used the following API's to lock/unlock the desktop and the start menu in Windows 98 (i've also hide the taskbar), but if lock it both, when the user double click's on the desktop the Start menu popups! Anyone has a solution to this? This is the api's i'm using for you to try: (you call it...
  19. dimsis

    Simple method (function) to read an XML file ?

    Thanx bbofin, i've found MSXML 3.0 at the references when i made some tests, but i was 'nt sure if i've installed this, or if it was installed by the IE 6.0 i've got in my system. Also thanx for the other infos, that what's i was thinking to do. I'm gonna give only the files (not even package...
  20. dimsis

    Simple method (function) to read an XML file ?

    I've never understand what's the meaning of comments like strongm's. If you have something to suggest please do, but try not to critisize and offend others, please. Anyone ?

Part and Inventory Search

Back
Top