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

    Using application/vnd.ms-excel

    Make sure you are doing a Response.Headers.Clear before you set the ContentType and any other headers. Also be sure to set the headers for the file name and any other ones you can set up before hand. Of course, if the client turns off in-browser activation, it won't matter what version of...
  2. cchubb

    Are you better off now than you were 5 years ago?

    I would have to say that I am in almost exactly the same place now that I was 5 years ago. I have many of the same customers, do much the same work (slight change in tools) and make within 10% of the same amount of money. So, not much has changed. But, I have been saving my pennies, am moving...
  3. cchubb

    How to convince clients that being remote is OK?

    I am relocating from Virginia to the Orlando, FL area this year. I am an independant software developer. I have a number of local clients that are happy with my services. A couple are cool about me moving to FL and have been cool about not having me face to face every week or so. Two of them are...
  4. cchubb

    Help! - Error: Attempted to read or write protected memory

    Instead of ret = Identify(Buffer(0)) You should pass in the address of the buffer: ret = Identify(AddressOf Buffer(0))
  5. cchubb

    Use Regular Expression to delete lines in text file?

    You are going to have to read in the input file, line at a time and just don't print out the output lines you don't want. There is no way to "remove" lines in an existing file. You could NULL them out with spaces or whatever, but that only works if you don't change the size of the file. But...
  6. cchubb

    grouping and computing

    Are there so many that you can't put them in a double level hash as %data{symbol}{date} = value. Then you could iterate over the symbols, sort by the date and regenerate the data.
  7. cchubb

    Pattern Matching

    Whitespace is the \s symbol. That will match spaces and tabs. If you want a true whitespace handler then add on the other "white" items like line feeds: [\s\n] or [\s\0x0A\0x0D] (In case you want to handle both UNIX and DOS files)
  8. cchubb

    Datagrid not refreshing

    I am having the same kind of problem. A couple of things that I have done that don't seem to help: (To narrow the problem down) 1) Redirect back to the same page. Doesn't help. 2) Rebind the grid. Nope. 3) Drop the DB connection and reconnect and rebind. Nope. It has been frustrating, that is...

Part and Inventory Search

Back
Top