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

    IIS7 rendering pages and uploading files slowly for IE8

    I am using the File Upload control on my aspx page. When uploading a file to our IIS7 server, the upload speed is noticeably slower (and almost unusably so) when using IE8 rather than Firefox or Chrome. It also appears that the pages render a bit slower on IE8 than Firefox. Here's the caveat...
  2. tanman1975

    accessing exchange from a client program

    I'd like forms within a program I wrote to automatically be filled out with contact information on our echange server. I'll be writing the project with vb.net. Can anyone point me to a good source of information on how to access contact folders on the exchange server?
  3. tanman1975

    Delete duplicate fields in a table

    does the table have a primary key? That would make it easy. You could do something like this: DELETE your_table FROM (SELECT firstname, MIN(primaryKey) AS taxpayer_id FROM your_table GROUP BY firstname) foo RIGHT OUTER JOIN...
  4. tanman1975

    Delete duplicate fields in a table

    are you creating a new table with unique values or are you wanting to remove the excell records with duplicate field values?
  5. tanman1975

    VB Editor truncates number - Why

    i think it rounds it (not truncates) because that's the largest precision stadard VB datatypes may handle.
  6. tanman1975

    Printing multi-line texbox

    how about something like this (if I understand your goal correctly)? dim yourstring as varchar(8000) ' this will be the eventual variable with carriage returns built in for formatting yourstring = "" For I = 1 To len(myTextbox.text) step 80 (or however many characters you want before carriage...
  7. tanman1975

    Bind A DataCombo With More Than One Columns

    Can you be more specific about what you are trying to do? You could add a command to your data environment to merge the columns with a select statement, and tie that command to your DataCombo box.
  8. tanman1975

    Creating a DTS

    if you're using SQL 2000, you can create a DTS package in the enterprise manager and then save it as VB code. Then copy that code to your program and replace the appropriate parts with variables. (the created code if fairly intuitive) If you are using SQL 7.0, the sample VB code that comes with...
  9. tanman1975

    Index and table optimizaion question

    This may be a stupid question , but did you run the index tuning equivelant in SQL 7.0 on the code? I suppose after that you could dump the other indexes. My guess is you could get away with two composite indexes.
  10. tanman1975

    Less puzzling puzzles please

    HEY! That table breaks all sorts of normalization rules ;)
  11. tanman1975

    running stored procedure from VB 6 is slow,but not from query analyser

    oddly enough, it stopped doing it after I set ARITHABORT on. I have no idea why that fixed it( I set ARITHABORT on because of a DTS realted problem) but if anyone has a clue why, I'd love to hear it
  12. tanman1975

    running stored procedure from VB 6 is slow,but not from query analyser

    I designed a stored procedure (it creates a table) on our SQL Server 2000 that runs in about a second when executed from the query analyser. However, when I run the same procedure with the same parameters from my VB6 (sp6) application it takes almost a minute to execute. Has anyone run into this...
  13. tanman1975

    Installation Package for program using Crystal Reports 11

    Hi! I recently installed Crystal Reports 11 on my computer. The next time I compiled a program that contained crystal report files (written in 9.0), those reports would run within the program on my machine, but not my clients' machines, despite my makeing no change to the reports. I assume CR11...
  14. tanman1975

    using VB 6 and crystal 9 to change a subreports datasource

    Interesting! I've didn't know that about SQLQueryStrings and subreports. I didn't bother trying changing the ConnectionProperties because I thought the same problem would occur (in my mind, it was the OpenSubreport method that was causing the problem, much like when you open a subreport by...
  15. tanman1975

    using VB 6 and crystal 9 to change a subreports datasource

    hi, i have a subreport generated in a VB6 program for which I have to change the datasource. With it's parent report I changed the SQLQueryString, however when I tried the same method with the subreport: Report.Subreport1.OpenSubreport.SQLQueryString = "blah blah blah..." the program pops up...
  16. tanman1975

    poptioiping up a jpeg

    oh, jpeg is in the fla's library
  17. tanman1975

    poptioiping up a jpeg

    i'm pretty much a newbie at actionscript but have a pretty good programming background otherwise and i know my way around frames, scenes, and symbols. what i want to do is associate jpegs with particular buttons. these buttons exist pretty much throuht the flash movie. whenever someone clicks...
  18. tanman1975

    how can i get looping movie clips reset prematurely

    oddly enough, this problem does not occur if you use a symbol for your mask instead of a shape.
  19. tanman1975

    how can i get looping movie clips reset prematurely

    sorry. it's been a long week: http://www.brinkleys.org/users/tsl/MASKINGPROBLEM-changingmask2004only.fla
  20. tanman1975

    how can i get looping movie clips reset prematurely

    here is the example: http://www.brinkleys.org/users/tsl/MASKINGPROBLEM-changingmask.fla note that the oval stutters when you click the button.

Part and Inventory Search

Back
Top