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

  1. koala15

    Compound "if" question

    Hi all, As an example, I have a statement like if (is_array($var1)) && (count($var1) > 3) && ($var1[2] == 22 ) {...} Question: in visual basic, the compilation order of each section of the "if" construct is not guaranteed and as a result (in VB) if $var1 was not an array the compiler could...
  2. koala15

    MsFlexgrid: How to check if text visible

    Thank you all, This is just perfect, have a star Dr JavaJoe More power to you!! "Life is full of learning, and then there is wisdom"
  3. koala15

    MsFlexgrid: How to check if text visible

    I have a flexgrid that has a column of a fixed width. I am populating the rows of that column from a DB. Is there anyway to programatically check that a particular character (example: the 59th)in a cell is visible to the user? I am using a proportional font like Arial. If I use a fixed width...
  4. koala15

    MSHFlexGrid MouseRow property returns wrong value

    I wonder if the MouseRow (Col) is being updated asynchronously, so that when the mouse is moved to hover over the field in the IDE, the MouseRow (Col) will show the last values as the mouse leaves the control. Hmmmmmm ....... "Life is full of learning, and then there is wisdom"
  5. koala15

    MSHFlexGrid MouseRow property returns wrong value

    I just set up a test - it worked perfectly. I am running VB6 (SP6). Can you please run a simple test with a new project, just containing a HFlexgrid and a MouseDown event containing a Debug.Print statement showing the .MouseCol and Row. What version and SP are you running for VB? Cheers...
  6. koala15

    runtime error 2105 you can't go to specified record

    Does MSDN article 128195 help you at all? "Life is full of learning, and then there is wisdom"
  7. koala15

    opening access database

    Instead of just "copying" the EXE file to the production server, have you tried "uninstalling" the previous app and the "re-installing" the new app after you create the new installation package (via PDW or others). This should bring with it the Jet DLL file(s) necessary for 2000. "Life is...
  8. koala15

    VB5: Permission denied error during compile

    Are you logged on as the Administrator or as a member of the Administrators group? If not, please do so and retry. "Life is full of learning, and then there is wisdom"
  9. koala15

    Maltese Falcon

    In Word2000, where the characters are being displayed correctly, what font(s) show those characters correctly? If you then use the same font(s) and try to display the same hex codes in VB6, what happens? Last thought, there is a text editor that I have used for years (namely "TextPad"), what...
  10. koala15

    Months between two dates?

    The challenge with the Month() function is that if the dates are in different years, then the logic may have to compensate for that fact. However AEtherson's solution has that fact built in. "Life is full of learning, and then there is wisdom"
  11. koala15

    Months between two dates?

    So are you intending to ignore the day part of the date completely? For example, should 15/1/04 to 13/12/04 result in 12? "Life is full of learning, and then there is wisdom"
  12. koala15

    My client is trying to run my app on citrix....

    Try this with special emphasis on paragraph 5. "Life is full of learning, and then there is wisdom"
  13. koala15

    CreateThumbnail in "gdi32" ?

    Try this. "Life is full of learning, and then there is wisdom"
  14. koala15

    Is there a way to remove duplicates from a collection?

    Instead of removing duplicates from the collection, why not scan the collection at the point of adding a new item to ensure that the "new" item does not exist in the collection. Is that feasible in your environment? "Life is full of learning, and then there is wisdom"
  15. koala15

    SP2 with 100% CPU and No Disks Visible

    Thank you both, problem solved. The solution was the WIA service as detailed in KB819017. Once I disabled the WIA service, the 100% cpu was no more and the drives are now visible. Thanks again, a star to you both. "Life is full of learning, and then there is wisdom"
  16. koala15

    SP2 with 100% CPU and No Disks Visible

    Hi all, I have an SP2 (Pentium 4 1.6Ghz) that on startup has 100% cpu usage and in Explorer can not "see" any devises in My Computer. The process using the 100% is "svchost.exe" and there are 6 entries for that exe in task manager. Each one has different memory usage. Only one is using 100%...
  17. koala15

    VB6 to Java or .Net????

    Earlier today Clipper2000 asked a question regarding investing in learning .Net or staying with VB6. What is this community's view on using Java rather than .Net as a follow on from VB6? Maybe the answer is "both"? Especially given that Java is (mostly) platform independent? I think a lively...
  18. koala15

    Opening a cash drawer

    I wrote a POS system but could not figure our how to use the "OPOS" interface, on the site pointed to by TallOne. So I set up an "Option" form where the user (in consultation with the technical book that comes with the cash drawer) can select the Port, Baud Rate, Parity, Data Bits, Stop Bits...
  19. koala15

    Image file dimensions

    I don't know if you have seen this but an expanation of the JPG file layout can be found at http://www.funducode.com/freec/Fileformats/format3/format3b.htm It would seem that the dimensions are contained in the image header. Does that help? "Life is full of learning, and then there is...
  20. koala15

    datagrid

    ruyeno22, This is what I used: Dim blnGridClickSw as Boolean Dim lngMouseColHold as Long Dim lngMouseRowHold as Long Sub Grid1_Click() 'Thow away unwanted click events If blnGridClickSw Then Exit Sub 'See if a fixed col or row was clicked If lngMouseColHold <= grdDiary.FixedCols -...

Part and Inventory Search

Back
Top