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 Shaun E 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: j420exe
  • Order by date
  1. j420exe

    ADO parameterized query help

    If I have a query that has 5 parameters but I am only passing in 3 of them how can i delete the parameter or what can I set the parameter to if it isempty??? This is to an Access Database. Public Function GetRecordset(sSQL As String, Optional arrParams As Variant) As ADODB.Recordset Dim...
  2. j420exe

    Image Resize

    I have some image files in a folder. I would to resize them by changing their properties (pixel width and pixel height) from user input. I have two text boxes and a command button on a form. When the user clicks the command button all the files in the folder change according to user input...
  3. j420exe

    terminate an exe from another exe

    I have a mainapp.exe that calls update.exe. Before update.exe can run I would like to shut down mainapp.exe. This will take any user action out of the picture, which is what I want. Any suggestions? Thanks!
  4. j420exe

    prepare sql string

    Solved my own problem. Imagine that. PrepareSQLString = Replace$(Trim$(Replace$(s, Chr$(0), " ")), "'", "''")
  5. j420exe

    prepare sql string

    The string that I am passing into a function to build a sql statement is "b's" How can I search the string and find the single tick(s) and then once I find the single tick I can add another single tick to it so the sql statement will not error out when querying an access database...
  6. j420exe

    Replace number with ascii character?

    Thanks!!! That worked!!!
  7. j420exe

    Replace number with ascii character?

    What if I don't know what the number is going to be between the !? Thanks for the help!
  8. j420exe

    Replace number with ascii character?

    I have a string: abc!246!def I need to replace the 246 with the ö character which is 246 on the ASCII table. Is there is a way to search the string for the ! and then replace whatever number is in between then ! with what ascii character it is? Thanks!
  9. j420exe

    Normalize or DeNormalize?

    I wish I was back in college. We have a client/server application that uses Access. The data structure is normalized right now but we are having to use lots of joins in our sql statements for reports and also lots of functions inside our classes that enables us to get access to certain data...
  10. j420exe

    Normalize or DeNormalize?

    What are the advantages and disadvantages between Normalized and DeNormalized Data Structures in an OO environment?
  11. j420exe

    advance mouse cursor to text box

    Thanks that worked! -J420exe Apologies to anyone that I offended for not responding sooner.
  12. j420exe

    distributed software over the internet

    VB app connects to server over http. How can I initiate a download of a self-extracting exe to the clients machine? I would then use the shell command to run the .exe And ideas? Thanks.
  13. j420exe

    advance mouse cursor to text box

    I have 3 text boxes. Month, Day, Year. The text boxes are limited to two integers. After the user enters 01 for the first text box how can I have the cursor advance to the next text box so the user doesn't have to use tab or click in it? Thanks1
  14. j420exe

    updating the clients version

    Design question: What is the industry standard or best practice for updating a clients version of the software electronically? Our vb app allows the user to connect to our network and upload newly created orders. We would like our software to check if a newer version of any component (dll...
  15. j420exe

    Pass a variable into a javascript function

    Can you pass a variable assigned by an ASP object into a javascript function? I have a date assigned to a variable and I need to pass it into a javascript function for a language conversion. Is this possible? If so any ideas?
  16. j420exe

    replacing a white space with a plus sign in a string

    Thanks!!! That worked!!!
  17. j420exe

    replacing a white space with a plus sign in a string

    int i; char buffer[] = &quot;abc def&quot;; char replaceChar[] = &quot;+&quot;; for(int i = 0;i<strlen(buffer);i++) { if(buffer[i] == ' ') buffer[i] = replaceChar; } I am receiving an error when this line buffer[i] = replaceChar; is being executed. Is this line going...
  18. j420exe

    replacing a white space with a plus sign in a string

    New to C: I have a string that is 35 characters long excluding the (): (New City ) I would like to create a new string that looks like this: (New+City+++++++++++++++++++++++++++) How can I go about this?
  19. j420exe

    ASP Printer-friendly page?

    I am displaying all the contents of a database table in an ASP page. The table has 30 columns. If the users presses the browser print button its 'ugly'. How can I display the page in a &quot;Printer-friendly page&quot; format? Or is this even possible because of the amount of data being...
  20. j420exe

    Displaying database records: Unspecified error

    I am using win2k server, access 2000 and IIS 5. The page will display the contents of the database but when I click refresh I get the unspecified error message and the line reference is to my DSN. I have double checked the DSN and the database and everything seems right. Here is what I have so...

Part and Inventory Search

Back
Top