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. harebrain

    Does Microsoft call you?

    Thanks, guys! Just another case of "If it sounds to good to be true...
  2. harebrain

    Does Microsoft call you?

    Yesterday, a guy claiming to be from Microsoft called me on my cell phone. (He had an Indian accent, so that's plausible.) He said that there was a virus on my laptop (I have 3 laptops) and he wanted to walk me through fixing it. I told him I was at work and couldn't get to "my laptop," so he...
  3. harebrain

    VB6 and UTF-8

    Thanks, I'm going to remember this thread. I had seen the Spolsky article and was also amused by the deprecation of EBCDIC: the job I had before this one--we used PL/1. Gag. For now we're going to survive on faith: we don't think we're going to see any > 127 data, so we're going to pretend...
  4. harebrain

    VB6 and UTF-8

    Thanks, Mike, that confirms what I already know and clarifies a bit of the mystery. (No pun intended.) Our legacy system is happy, old, "PC ASCII": numerals, upper- and lowercase letters, some punctuation. Now we have a new instrument that is producing UTF-8 files. It leads off files with a...
  5. harebrain

    VB6 and UTF-8

    It seems as though we flogged this subject to death years ago, but I'm hesitant to rely on the ten-year-old threads I found that are, at best, ambiguous. So here we go again: Is there a straightforward way to handle UTF-8 files with VB6? I think my challenge in the end will be to read UTF-8...
  6. harebrain

    CTRL+C \ CTRL+V functionality and Delphi 2010

    Those are from the old CUA keymap. There's probably a property in the edit class you were using that enables CUA keys or Win keys or both. This crops up a lot when you need to prevent the user from pasting into a field: you have to disable CTRL-V, SHIFT-INS, and the context menu's Paste using...
  7. harebrain

    What is Windows doing when it's not doing anything ?

    Check the Logitech Web site to see if you really need those apps and driver. I have an older cordless mouse, and I installed the driver for it. Ran into performance issues similar to yours. Hidden away in the Logitech site was a notice that my mouse model was supported by the Windows 7...
  8. harebrain

    Loop Counter starting with maxamum value not 1

    As for the other mystery, when you write a "for" loop incrementing from 1 to a maximum value, whenever your loop counter isn't involved in a calculation that might somehow affect the loop's execution, Delphi converts the loop to start at the maximum value and decrement to 1 (or whatever the...
  9. harebrain

    Unusual XML file

    The problem with the OP's provider is that they don't know the difference between tags and values. That is definitely not well-formed XML; it's not even close. It looks like what they should be doing is something like this: <root> <hashtable> <unknown>6</unknown> </hashtable>...
  10. harebrain

    xml editor

    XML Notepad is a free download from Microsoft.
  11. harebrain

    Windows Photo Gallery - Damaged or Corrupted

    I think Windows Photo Gallery is "damaged by design." Would it be possible for your users to download and use Windows Live Photo Gallery? It's a more ambitious and better application.
  12. harebrain

    IE9? or not? Just yet anyway

    Some websites that employ older technologies (or old versions) don't work in out-of-the-box IE9. IE9 has a "compatibility mode" that makes those sites work--it's not always so pretty in "compatibility mode," but it will work. I use IE9 and I like it.
  13. harebrain

    How to create new element if node value is too large.

    Why would you need to do that? Presumably, there is something that would make the <note> item "too big." What is that? And why would you duplicate the entire <thread> node when you could put multiple <note> items within a <thread>?
  14. harebrain

    Newbie

    XML is a mark-up language: it's a data file that includes the context of the data. XML is not a programming language: it doesn't DO anything. You have VB.NET as a programming language and your data is stored in a SQL Server database. Presumably your job is to perform a mail-merge. If your...
  15. harebrain

    Basic XML Question

    Excel is not a particularly simple way to create an XML file. It takes more steps than doing it directly. If your data is coming from a database, you can probably export it directly as an XML file. Otherwise, if you're comfortable using any programming language to read and write files, it...
  16. harebrain

    Forcing users to input data

    hdingman, that could be either a very good idea or a very bad idea. If the OP's app has ten ID numbers, it's a good idea. If he has a thousand ID numbers, that would kind of suck.
  17. harebrain

    Organize Project

    Thanks, George. If that's what the poster meant, I did misunderstand him.
  18. harebrain

    Organize Project

    There is no "Forms" menu, so your question doesn't make sense. You can create a form, then go to the File menu, choose "Save as" and you can put the form anywhere you like. This, however, would be an unwieldy way to organize your project, as it could lead to project files being scattered all...
  19. harebrain

    XML extraction to t-sql

    Well, that just sounds crazy. Why on earth would you use T-SQL to populate an Excel spreadsheet, then turn right around and use T-SQL to read the spreadsheet to populate a SQL Server table or tables? What is the purpose of sticking Excel in the middle of this?
  20. harebrain

    Searching Text with wildcard

    Bingo on the . = ? As for the asterisk, it doesn't match anything itself: it modifies the previous piece of the regex. For example: A* matches 0-n (uppercase) A characters [0-9]* matches 0-n digits .* matches 0-n of any character

Part and Inventory Search

Back
Top