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 TouchToneTommy 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. Ime532

    Avoid using dbname.userid.tablename syntax?

    Bingo, figured it out just as you replied! Thanks!
  2. Ime532

    Avoid using dbname.userid.tablename syntax?

    Or maybe there is a setting on the sql server that allows you to omit the prefixes (something like "Force fully qualified table names")?
  3. Ime532

    Avoid using dbname.userid.tablename syntax?

    Well i setup a sysdba user and it's still wanting me to use the prefixes. Any way in the connection string I can prevent this?
  4. Ime532

    Avoid using dbname.userid.tablename syntax?

    I wrote a bunch of code with queries that only specify the table name, without the prefixes. I was using sysdba as the user id in the connection string. Now I am using sa and I think that's the reason it wants me to reference a table in the format dbname.userid.tablename. My questions are...
  5. Ime532

    Emulating user entering data into a web form and submitting data?

    I don't think this is possible but wanted to check and make sure. We have to enter data manually on a website and then click a submit button to send the data to them, one record at a time. I want to write a program that automates entering this information and sends the data, the same way the...
  6. Ime532

    Need help adding trusted site programmatically

    I can add trusted sites to the registry, thanks anyway.
  7. Ime532

    Need help adding trusted site programmatically

    I found these links: http://msdn.microsoft.com/en-us/library/ms537143(VS.85).aspx http://msdn.microsoft.com/en-us/library/ms537181(VS.85).aspx#programmatic but I don't understand how I put this into my VB .NET application to make it happen. Can someone help? What I will be adding is not a...
  8. Ime532

    Can you log every connection/query run against a db?

    I'm curious as to whether or not there is a way to log every connection and query run against the database. If so, could someone give me a brief description on what would be involved? Thanks!
  9. Ime532

    Need help creating .Net app...

    I have an application that right now works with palm handhelds. Basically the palm synchronizes with several "temporary" access databases, and then the windows application connects to those databases and pulls the information into the main database. I need to redesign this using Windows CE...
  10. Ime532

    Setup project, can't get rtf files to display...

    It started working! No idea why, I just tried linking to the rtf file while it was in a different directory and that did it.
  11. Ime532

    Setup project, can't get rtf files to display...

    Not sure what you mean by check the encoding, but it's an RTF file... created in wordpad. I tried recreating the files in wordpad and saving them as RTF's and it still doesn't work. I'm out of ideas!
  12. Ime532

    Setup project, can't get rtf files to display...

    I created a setup project that installs my web application just fine. However, I added a license agreement form and a readme form and set the file properties to rtf files and it is coming up blank. Here's exactly what I did: 1. Created setup project to be part of the solution that includes...
  13. Ime532

    .NET 2.0 not backwards compatible with .NET 1.1????

    Thank you for the code shelton! Chrissie1 this is in fact the problem because every one of our clients experiences the issue. Removing .NET 2.0 framework fixes the issue for everyone as well.
  14. Ime532

    .NET 2.0 not backwards compatible with .NET 1.1????

    Thank you for the reply! Our application launches a client-side application and basically it breaks if it is the 1.1 version and the user upgraded to version 2.0. The reason this happens, as it was explained to me, is that the app tries to use the 2.0 version of any control no matter what...
  15. Ime532

    .NET 2.0 not backwards compatible with .NET 1.1????

    Is anyone else having problems with stuff written for .NET 1.1 not working when the client upgrades to .NET 2.0? Unless I'm missing something, how can microsoft think this is okay to release a software upgrade that breaks applications made for the previous versions???? Also, is Microsoft...
  16. Ime532

    Access limitations...

    Table is indexed on the primary key. All fields are as small as possible. I think we've just found access' limit. I reduced the number of records by a lot in the one table and now the database is back to flying, even after a compact and repair. We're just going to move these bigger accounts...
  17. Ime532

    Access limitations...

    I have an application that I believe to be growing beyond the capabilities of Access. There is a table with about 5.9 million records that my application is having speed issues accessing after compacting. Here's the deal: DB size (no compact): 700mb Records in table: 5.9 million Simultaneous...
  18. Ime532

    Symantec 8.1 and Norton 2003 causing slow downs.

    I have an application that uses a VB 6.0 front end with an access db and when users run reports on a machine with either of these versions of norton (haven't tested any others) the report speeds are decreased by over 50%. An example: Run report and it takes 24 minutes Remove norton Run report...
  19. Ime532

    Set datarow = current row of datatable?

    So I guess the (0) tells the select method to select the first record in the results? Thanks!

Part and Inventory Search

Back
Top