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: *

  • Users: cjtaylor
  • Content: Threads
  • Order by date
  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

    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...
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. 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...
  12. 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...
  13. 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
  14. 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...
  15. cjtaylor

    Create Static ASP.net Pages from entries in database?

    Hello. Instead of having one page that is dynamically updated from the database, I was wondering if it is possible to create a static page from each entry in my database. How should I approach this? Thanks Chris Taylor
  16. cjtaylor

    Sin Wave Data To Sound?

    Anyone know how to convert sine wave data to sound? I cannot find this info anywhere. I want to be able to take the points in my sinewave buffer and convert it to play a sound on my sound card. Any help appreciated. Chris Taylor
  17. cjtaylor

    Get a Point[] from Graphics.DrawLine method?

    Does anyone know how to get each point that a line goes through? Or, is it possible to get an array of points of a line drawn with the DrawLine method? Any insight appreciated? Thanks Chris Taylor
  18. cjtaylor

    Color of Pixel at a particular point on a form?

    Hello, Is there an efficient way to get the System.Color of a particular Point(x,y)? I have found a way to do this if save the form as a bitmap and then call bmp.GetPixel(x,y), but this is extremely inefficient way of doing it. Any ideas? Thanks, Chris Taylor
  19. cjtaylor

    Using Microsoft.VisualBasic.Compatibility assembly in C#?

    Is it possible to use Microsoft.VisualBasic.Compatibility.dll assembly in a c# project? I need to use VB6.IPictureDispToImage function or a c# equivalent but can seem to get anything to work for me. Visual Studio doesn't recognize the using Microsoft.VisualBasic.Compatibility in my C# project...
  20. cjtaylor

    How to get/set Form1.label1 from Form2 without being MDI

    Hello, I am comming from the Borland world of programming where you could access one form from another just by using a simple include statement. How do you change the value of a label on Form1 from Form2 without being an MDI application? Thanks

Part and Inventory Search

Back
Top