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 bkrike 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: mb22
  • Content: Threads
  • Order by date
  1. mb22

    If I DYNAMICALLY add user control how can I read back from it?

    If I add a user control (UC) at design time ... I have no problem reading from the controls in it ...say (text boxes) bcos I create a public property for each text box. say in my UC i have a TextBox txtfname ...and a property p1_txtfname to read and write to it Public Property p1_txtfname()...
  2. mb22

    task manager CPU shoing 100%

    i run Ad-Aware 6.0 ... updated Norton anti-virus ..... still pegged at 100% .... PC though appears to run my .NET app OK. what else can I do to remove or "end process" of whatever is giving me gray hairs!
  3. mb22

    Do you know a web hosting company that supports SQL Server backend?

    I'm trying to build an ASP.NET web site with a SQL Server backend ... using the ASP.NET Community Starter Kit .. which is very integrated with SQL Server. Earthlink supports only Access databases ... do you know know any web hosting companies that supports SQL Server.... and perhaps FrontPage...
  4. mb22

    How do I open a window and scroll to the bottom automatically?

    I have a ASP.NET page that I designed in a 1024/768 pixel resolution. Some users have their resolution set to 800/600 and as a result have to scroll each time to get to the bottom. What function can I use for the body onload maybe .. so that when the page opens .. it scrolls to the bottom...
  5. mb22

    Can JS access the controls in a USER CONTROL for client-side events?

    In the main ASP.NET page ... if you have a user control ... which say contains several controls like say text boxes for a person's address .... how can you use JS to access the text boxes in the User Control. Do user controls support events on the client side that you can use JS to access? how...
  6. mb22

    Can JS access the controls in a USER CONTROL for client-side events?

    In the main ASP.NET page ... if you have a user control ... which say contains several controls like say text boxes for a person's address .... how can you use JS to access the text boxes in the User Control. Do user controls support events on the client side that you can use JS to access? how...
  7. mb22

    Do I need 2 separate indexes or just 1 composite index is OK?

    i have a table that I select by the main id, and then sort say ... by the sequence number Cust_ID Seq_No ------- ------ 1111 1 1111 2 2222 1 3333 1 3333 2 3333 3 etc.. etc ... i usually use a query like select * from Customers where...
  8. mb22

    Is it a good idea to re-index during week-ends as routine maintenance?

    I have a 250meg database with about 10 tables and say 15 - 20 indexes ..... will it be smart to DROP and CREATE the indexes over the week-end when we are off on a regular maintenance routine? Or do i have to wait for a problem before re-indexing if necessary?
  9. mb22

    Does SQLServer automatically create an index for an IDENTITY column ?

    Does SQLServer automatically create an index for an IDENTITY column ? ... Or do I have to create an index myself if I am going to be running SELECT or UPDATE queries on that column .. for speed?
  10. mb22

    Password input type field will not display cookie value, why?

    I have input type password field .... which I try to populate on load together with a userid type textbox field. The textbox field load with my cookie userid value .. but the password field does not. It shows blank even though the cookie value was assigned. How can I display the password...
  11. mb22

    FormsAuthentication timeout and IIS timeout ..what is the difference?

    I have set my formsauthentication cookie to expire in 180 minutes. I set the IIS timeout to 180 mins also ..actually (180 * 60 ) seconds .. I also set the timeout in my web.config SessionState tag to 180 minutes. Users experience a slow down every now and then to my app. Of course there could...
  12. mb22

    Should I shrink my DB to free space before EXPANDING IT?

    I have a 90mg database .... and it is showing 82mg used. I really don't think 82mg has been used ... I suspect there may be free space which is not available .... as I have deleted some large tables ... and I read somewhere in this forum .. it is better to truncate the table instead! Anyway I...
  13. mb22

    If user "X" out or close a window, can you show warning and prevent it

    If a user 'X's out of a browser without saving changes with a Save button that I have provided ... IS there a way I can poop up a warning that "Changes not Used" .. OK/Cancel and Cancel the CLOSING of the page if the user chooses Cancel? ... like the VB QueryUnload event set to Cancel?
  14. mb22

    How can I check if index exists before creating a new one: Access2000?

    i have several queries which works fine in a macro. ...all the queries are like this CREATE INDEX Company_ID ON Company (Company_ID) ; however sometimes the index exists already .... and it causes my macro to bomb? Is it possible to modify the queries to check for the existence of an index...
  15. mb22

    Do I need COM+ if more users will access my ASP.NET app?

    I have my up in production running fine for about 2 weeks now. I have about 30 concurrent users now. That will increase to about 500 soon at first... and perhaps up to a limit of about 5000 - 10000 concurrent users. In my app I have several classes ... about 3 business logic classes and about...
  16. mb22

    Can you insert a row into TableA fromTableB in the same DATASET?

    if i have 2 exact SAME tables in a dataset say ... TableA and TableB. how can I do this? "INSERT into TableA SELECT * from TableB where Cust_ID=10" the tables have too many columns for me to add a New row .. and the populate each column for the new row. sample code will help .. thanks VB.Net
  17. mb22

    Should I expand my database file .MDF=92mg backup=78mg?

    My current .MDF file is about 92MG. ... when I run my nightly backups the backup size is about 79MG. Is there enough free space left in my database .... can I use this to determine? Or is it better to expand my database to say 125MG for performance? Does more free space speed up database...
  18. mb22

    IS there a size limit on the length of the QueryString in URL?

    I'm trying something interesting..... I need to interface with another vendors .NET web service. however they are not ready yet and cannot wait ... meanwhile they have a VB6 windows app .... from which I want them to be able to interface with my .NET web app in the interim. Now the issue is...
  19. mb22

    JS to open a window by PERCENTAGE width/height of available SCREEN?

    Can you resize a window EITHER when opening i.e. window.open(.....) or if you have to resize after opening .. maybe I can live with that .... by PERCENTAGE width/height of the SCREEN? rather than actual pixel size? I have users who have several different screen resolutions and constantly...
  20. mb22

    Bacakup of TRN log will not run anymore

    I use to run full database backup of MYDB (92M) and a full TRN log at night..... I got advice to run the TRN logs during the day at specified times... and a full DB backup at night. I modified my maintenance plan to do this. I also increased the size of my TRN log from 30M to 40M. Now when I...

Part and Inventory Search

Back
Top