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

    Character conversion help

    I am having a problem trying to figure out how to convert the registered symbol so it displays like ® instead of like this ? (actually displays as a square) in my code. How do I convert this so when I assign my label.Text property, it displays like the following on my form. Capital One®...
  2. cjtaylor

    Seek into wmv file while recording?

    Is there a way to seek into a wmv file while the file is currently being recorded? I have no problem seek after the record is complete...but I have a need to seek back into a actively recording file. Any Ideas? Thanks ct
  3. cjtaylor

    Apply Antialiasing to Labels in app?

    Is there a simple way to provide antialiasing to all labels in an app or to the app as a whole? I can do it on individual labels by overriding the paint with the following. I was just wondering if there is a better way of doing this before writing a function to override all event handlers for...
  4. cjtaylor

    DataTable.Compute() Syntax Help

    I am looking to sum a datatable when certain fields match a criteria. I have the follwing fields in my table TOTAL, ORDER_TYPE. I want to able to sum all fields with the ORDER_TYPE = 'Sale', ORDER_TYPE = 'Charge' AND NOT ORDER_TYPE = 'None'. Can I do this with limited syntax of the filter...
  5. cjtaylor

    Show Form When Completely Created?

    I have a form that has a lot of components on it, which you can see being drawn on slower machines. My question is there a way to not show the form until everything is ready to be displayed. How do you know when the form is fully created and ready to be displayed? Thanks
  6. cjtaylor

    ASP.NET 2.0 Menu Cross Browser Question

    Hey thanks for the tip on that toolbar, I did not know that existed. My problem was that the the skiplink property is set by default. Taking the text out of this property solved my problem.
  7. cjtaylor

    ASP.NET 2.0 Menu Cross Browser Question

    I did notice that when the html is rendered I find this line of code that does not exist in my source code: <a href="#Menu2_SkipLink"><img alt="Skip Navigation Links" src="/ccc/WebResource.axd?d=ARFB4g0caHz80drBLss2LQ2&amp;t=632718022497500000" width="0" height="0" style="border-width:0px;"...
  8. cjtaylor

    ASP.NET 2.0 Menu Cross Browser Question

    Thanks Prashant, I took the the <br /> out, but the problem persists? What els emight cause this> Thanks, Chris
  9. cjtaylor

    ASP.NET 2.0 Menu Cross Browser Question

    I am working with the asp.net 2.0 menu and noticed that there is a space in the beginning of each menu, as if there is a blank menu item in ie, but not in firefox. Anybody know how to make this look the same? Look at the menu at http://www.consumer-credit-cards.com in firefox and in ie to...
  10. cjtaylor

    Programatically space/center buttons (controls)?

    Hello, I have a bunch dynamically created buttons which are placed in a tabpage. Not all the buttons are created all the time, so what I want to do is space them equally and center them in the container which they reside programatically, like the designer does at design time. I was wondering...
  11. cjtaylor

    Event Handler References Getting Deleted???

    Are you saying to move the events from the designer class to the form class where the event is consumed? Thanks
  12. cjtaylor

    Event Handler References Getting Deleted???

    I have a program where I have several control event handlers being implemented. I have a serious, tedious problem that keeps occurring in Visual Studio 2005 Team C#. When I switch from the code view to design view and the form is redrawn/reconstructed or whatever happens when the form is...
  13. cjtaylor

    Another DB Design Question

    hello, I have another database design question. This one has to do with inserting a base64 string into a text field in my db. Again I may have design issues with this, but why in the world would it take 17 seconds to insert 1.7kb worth of text? I can read the record in milliseconds, why...
  14. cjtaylor

    Database Design Question?

    Hey guys, Thanks for the suggestions, creating the index on upc_code did the trick. Now my lookups are lightning fast. Thanks again Chris Taylor
  15. cjtaylor

    Database Design Question?

    Hello, I am designing a grocery store application, I am not new to programming but I am new to database development. So, I need to ask some basic database design questions. I have a product table with approx. 50,000 records. When I do a lookup (i.e Scan product) I take the upc code and query...
  16. cjtaylor

    C# 2.0 DataGridView Sort Problem

    I am having a problem sorting my DataGridView in descending order. Everything works fine when sorting by ascending order using: OrderTable.Rows.Add(objDR); OrderTable.AcceptChanges(); dataGridView.DataSource = OrderTable...
  17. cjtaylor

    Convert Binary File to MYSQL DB

    Hi Paul, Thanks for your help, I was able to get the file parsed and put into a db. I appreciate you wanting to help. Thanks Chris Taylor
  18. cjtaylor

    Convert Binary File to MYSQL DB

    Hello, I am kind of under a crunch here timewise and am not familiar with delphi or pascal. I am willing to pay for someones help. What I am trying to do is convert an old binary database file create in Pascal 7 into a mysql db. I don't care about the code logic, just the db. All I have is...
  19. cjtaylor

    C# 2.0 Webbrowser Control webBrowser1_DocumentCompleted

    I am trying to parse an html doc in the webBrowser1_DocumentCompleted event. The problem I am having is that the document really isnt completely downloaded yet, the event fires before it is complete. Is there a way to detect when the browser is really done with the request? Thanks Chris Taylor
  20. cjtaylor

    Draw to Screen from separate thread?

    Hello, I have a function that displays a wave form to a pictureBox using GDI. I am new to threading and was wondering if there is a way to synchronise this function with the main thread without having to re-write the function altogether. What would be the best approach to this task. Thanks...

Part and Inventory Search

Back
Top