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 wOOdy-Soft 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
  • Content: Threads
  • 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

    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...
  5. 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)...
  6. 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?
  7. 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...
  8. dimsis

    Simple method (function) to read an XML file ?

    Is there any simple function (no class, dll's etc) to read an XML file ? I want to read a Pad file (http://www.asp-shareware.org/pad/). Sample XML file: http://www.code.gr/chess-converter/cgnfc_pad_file.xml I need to read all the XML data and then write it into my database. (i know how to do...
  9. dimsis

    How can i add an image button in Internet Explorer's toolbar ?

    How can i add an image button in Internet Explorer's toolbar and every time it's clicked to run a function in VB?
  10. dimsis

    Unload control array?

    I use the following code to dynamically load some picture boxes into my form. For i = 1 To .RecordCount - 1 Load Application_Screenshot(i) next i This event occurs when a user clicks on a listview line. It works OK for the first time, but after another click i get a Run time error '360'...
  11. dimsis

    I need to create a thumbnail of a web page, after typing a URL via vb

    Can this be done from Visual Basic 6? http://www.tonec.com/products/wssh/index.html I need to create a thumbnail of a web page, after typing a URL via vb code (not activex). Thanx in advance
  12. dimsis

    Capture custom browser (ex: IE) window, resize it and save it

    I've seen a lot of code used to capture a full screen, form or a window region, but i've never seen an implementation to capture the MAIN (not the toolbars only the content) internet explorer's window, to resize it to a custom value (for example to 120x120 pixels) and save it (without asking) to...
  13. dimsis

    Find non latin sentences from a UTF-8 text file and replace it

    How can i seperate non latin characters (Greek) from a UTF-8 text file, and replace it with a string? I need to replace ALL the non latin sentence and not every char or word, so the function / routine / algorithm must have the logic to distinguish a full non latin series of characters as a...
  14. dimsis

    Carry variable value to every page

    I want to add an AREAID variable to all CFM template of my application. (>than 1000 templates) This areaid variable is an interger that must represent the current Area (city) and all the services of the site have to work according this value. For example: I have a forum, a webshop, a cms (for...
  15. dimsis

    Can i add an "add article" option to MS Word menu ?

    Is it possible to add a menu option to MS Winword 2002, via programming (vba, or visual basic) like the "Save as HTML" in the File menu, that connects to an internet database (SQL Server 2000) and inserts the working document into the db? If something like this can be implemented, then...
  16. dimsis

    Can i add an "add article" option to MS Word menu ?

    Is it possible to add a menu option to MS Winword 2002, via programming (vba, or visual basic) like the "Save as HTML" in the File menu, that connects to an internet database (SQL Server 2000) and inserts the working document into the db? If something like this can be implemented, then...
  17. dimsis

    Can i add an "add article" option to MS Word menu ?

    Is it possible to add a menu option to MS Winword 2002, via programming (vba, or visual basic) like the "Save as HTML" in the File menu, that connects to an internet database (SQL Server 2000) and inserts the working document into the db? If something like this can be implemented, then...
  18. dimsis

    When right click show my context menu according r-clicked href value

    I need a js context menu that popup's when the user right clicks on a dynamic option. For example i have the following options: 1) Option 1 (which has a link: page1.asp?id=1) 2) Option 2 (which has a link: page1.asp?id=2) 3) Option 3 (which has a link: page1.asp?id=3) When the user right...
  19. dimsis

    Folder browse like explorer window

    Is there any way to browse a folder with icons like Windows Explorer does? Anyone got a full example with ListView or other method? I need to lock all windows parts (taskbar, desktop icons etc) and display only a folder with the clients shortcuts in it. It's for an internet cafe and this could...
  20. dimsis

    Resized with StretchBlt Picturebox cannot saved with new size.

    I'm using StretchBlt to resize a picturebox (containing a captured image), but when i'm trying to save with the SavePicture command, the new resized image, it saves it with the previous (full) image size and not the resized one. What can i do to save it resized?

Part and Inventory Search

Back
Top