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 Wanet Telecoms Ltd 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. kcj402003

    SQL Server 2000 Support - Microsoft

    When will Microsoft stop supporting SQL Server 2000?
  2. kcj402003

    Printing the code of a .NET program

    I use textpad as well. Works great for me. KJ
  3. kcj402003

    Different display results - Win 2000 vs. Win XP

    I figured it out. Thanks, KJ
  4. kcj402003

    Different display results - Win 2000 vs. Win XP

    I figured it out. Thanks, KJ
  5. kcj402003

    Different display results - Win 2000 vs. Win XP

    Just to clerify, the XP workstation I'm accessing the site from isn't the one I developed on. So, I don't understand how this would be relevant. Just so you know also, I'm fairly new to web development and this is my fist project that I've worked on. I'm assuming it's absolute.
  6. kcj402003

    Different display results - Win 2000 vs. Win XP

    I have an asp.net project that was developed on a XP Prof. workstation. For testing purposes, I'm using this workstation as the "webserver". i'm populating an HTML table from a SQL DataReader and then applying a style sheet to the table. When I access this page from a XP workstation, everything...
  7. kcj402003

    Exporting data to excel

    Isador, I'm having one other problem. Any subsequent exports to excel(within the same session) are appending to the previous. KJ
  8. kcj402003

    I create excel file from asp.net - how to remove Excel.exe from memory

    Try this fIsProcessRunning("excel", True) Public Function fIsProcessRunning(ByVal proc As String, ByVal endprocess As Boolean) As Boolean 'Ends Excel process Dim tmpproc As Process() Dim x As Integer = 0 Try 'Attemp to get process by name...
  9. kcj402003

    Exporting data to excel

    ...thanks I was just creating a tab delimited string to create the .xls, so I tried your way, thinking that maybe it was the fact that you were using the RenderControl method. It may also be the fact that I'm pulling from a html table and not a datagrid. KJ
  10. kcj402003

    Exporting data to excel

    Isadore, Thanks. How did you get the column and font colors to transfer to the spreadsheet? KJ
  11. kcj402003

    Exporting data to excel

    Isadore, Could you please post the code the the SiteCounty page. Thanks, KJ
  12. kcj402003

    Weird environment behavior

    That happens to me too in debug mode. I just stop it and re-run and it then runs fine.
  13. kcj402003

    Viewing SQL Server 2000 Transaction Logs

    Actually there is an undocumented method using the DBCC LOG command. Here's a link http://www.winnetmag.com/Article/ArticleID/19652/19652.html
  14. kcj402003

    Recommended reading?

    One book that I found very helpful is from Wrox: "Beginning VB.NET 2nd Edition" ISBN# 1-86100-761-2. You could follow up with "Proffesional VB.NET 2nd Edition" KJ
  15. kcj402003

    VB Newbie. Needs help from VBA

    I was presented with the same problem. I found it easier to just start from scratch. One book that I found very helpful is from Wrox: "Beginning VB.NET 2nd Edition" ISBN# 1-86100-761-2. You could follow up with "Proffesional VB.NET 2nd Edition" KJ
  16. kcj402003

    Resizing columns and sorting in an unbound DataGrid

    Here's an example... Dim objDataGridStyle As New DataGridTableStyle() Dim objTextCol As New DataGridTextBoxColumn() DataGrid1.TableStyles.Clear() 'The following code formats the datagrids column header and width 'Set the MappingName for the...
  17. kcj402003

    how to run a VB.NET application on Windows 2000

    No, you don't have to install IIS on your client workstations.
  18. kcj402003

    how to run a VB.NET application on Windows 2000

    You have to install the .net redistributable first ... dotnetfx.exe. This can be downloaded from Microsoft. You have the option of using the install package to install the framework before the application installs. Check out this article on Microsoft's site: "Using Visual Studio .NET to...
  19. kcj402003

    Backcolor of a combobox

    I tried both examples below, and it seems that when the combobox is disabled it will not change the backcolor. cboName.BackColor = Color.FromKnownColor(KnownColor.White) cboName.BackColor = Color.White KJ

Part and Inventory Search

Back
Top