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 Chriss Miller 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: BigTeeJay
  • Content: Threads
  • Order by date
  1. BigTeeJay

    Need some help with a stacked bar chart

    I havent been able to find very much in the way of examples for Reporting Services, so I am hoping someone might be able to help me out here. I am trying to recreate a chart that I created in Excel. Its a stacked bar chart, with a trendline running along the bottom of the X's in the below...
  2. BigTeeJay

    How to hide base class members from instantiated objects

    Hey, Say I have the following... [code] // Assume I dont have the source for this code/object/class public parentClass() { public doSomething() { Console.Writeline("Parent Class: doSomething"); } public doSomethingNew() { Console.Writeline("Parent Class: updated doSomething")...
  3. BigTeeJay

    Palette change not persisting

    I have 100's of pictures who arent using a true "white" as the background and am creating a simple app to replace anything I consider "whitish" to pure white. The app works fine for all but a few bitmaps that were in a different format (they are using a color palette). I thought the code below...
  4. BigTeeJay

    ADO.Net functionality in ADO? (Mult tables in a set)

    Hey, I am trying to create a Windows Scripting Host app that will create a result set from one SQL table, and then store those results in another SQL table (which a differnt schema). This might sound like a really odd question, but hang on :) We have a database that is corrupted, we can read...
  5. BigTeeJay

    Matching shape to data series

    So the problem is, my manager wants to do a normal line graph with the data points for a data series. Then, he has two more series which are the standard error for the first series (essentially just two more series, slighly above, and slightly below the first, but not always parrallel to it)...
  6. BigTeeJay

    Doing Bulk Copy into SQL Server via C#

    Greetings all, I am trying to find the best way to programmatically collect a great deal of data from an older paradox system into a sql server. I have a solution that uses ms access now, but I am wanting to create something a little more robust. I found the bulkcopy object, and some example...
  7. BigTeeJay

    Disconnected RS not working even after following instructions

    Hey, Here is my code... Dim iRetVal, iUID Dim conn, cmd, rs Set conn = Server.CreateObject("ADODB.Connection") Set cmd = Server.CreateObject("ADODB.Command") Set rs = Server.CreateObject("ADODB.RecordSet") iUID = Session("UserID") With...
  8. BigTeeJay

    Append records in linked table to MS SQL table via OLEDB?

    Greetings, Does any know of a way to take a linked table, and append all the records into a table is MS SQL Server? I know I could attach to the table via ODBC and then just dump the contents from the linked to the attached, but I want to use OLEDB (since I have a LOT of data to move, and OLEDB...
  9. BigTeeJay

    Making your own scroll controls...

    I've been searching without much luck on this one. I tried searching all of Tek-tips for the words scroll and vb even (with plenty of results, but none that seemed applicable). What I am trying to do is, make buttons that act just like the scroll bars in a form. I dont want to use scrollbars...
  10. BigTeeJay

    Problem with CDONTS in IIS

    Hey, I was have a Win2k Pro based box, using IIS and PHP/ASP. I was trying to get mail sending up & working, and read about he CDONTS email object available via IIA. I found this code (ASP)... (http://www.powerasp.com/content/hintstips/asp-email.asp) <% Dim MyBody Dim MyCDONTSMail...
  11. BigTeeJay

    PHP &amp; CDONTS (massive emails)

    Hey, I was have a Win2k Pro based box, using IIS and PHP/ASP. I was trying to get mail sending up & working, and read about he CDONTS email object available via IIA. I found this code (ASP)... (http://www.powerasp.com/content/hintstips/asp-email.asp) <% Dim MyBody Dim MyCDONTSMail...
  12. BigTeeJay

    Ignoring some warnings, and processing others

    Hey, Any one know of a way to do selectively process or ignore warnings? (if I set showwarnings = false, I dont get any, if I set it to true, i get all of them). I want to be able to handle & inform a user of a Primary Key constraint error (when inserting) but essentially ignore all other...
  13. BigTeeJay

    &quot;.&quot; vs &quot;!&quot; in forms, subforms, controls, etc

    Greetings, Along the lines of FAQ181-447 (which I am not able to understand, the poor guys post appears to have been mangled in the process)... I am trying to figure out when it is appropriate to use &quot;.&quot; vs &quot;!&quot;. For example if referencing a control on the current form, you...
  14. BigTeeJay

    &quot;.&quot; vs &quot;!&quot;

    Greetings, Along the lines of faq181-447 (which I am not able to understand, the poor guys post appears to have been mangled in the process)... I am trying to figure out when it is appropriate to use &quot;.&quot; vs &quot;!&quot;. For example if referencing a control on the current form, you...
  15. BigTeeJay

    Setting .innerText works fine locally, but not on hosted site...

    Greetings, I've got an odd problem, if you look here... http://www28.brinkster.com/cjjctj/420/common/sample_tryit.html ...you will see the test page I put up, when you click on one of the links, they are supposed to populate the textarea control in the opened page. But its not working, the...
  16. BigTeeJay

    Scope issues between included .js files?

    Greetings, Here is my problem, I have a html file, that for simplicity sake has one form button, and it calls tstCallerFunc() in its onclick event. At the top of this html file I have included two javascript (.js) files. The first is specific to this html page, the second does generic...
  17. BigTeeJay

    programatically coloring code displayed on web pages...

    Does anyone know of a way of doing this? Has any one run across any ASP / Javascript component/function/etc that would allow you to process user supplied code (HTML, Javascript, ASP, etc) and have the output be displayed as colored code?... ie: <html> <body> Some text <!-- some...
  18. BigTeeJay

    programatically coloring code displayed on web pages...

    Does anyone know of a way of doing this? Has any one run across any ASP / Javascript component/function/etc that would allow you to process user supplied code (HTML, Javascript, ASP, etc) and have the output be displayed as colored code?... ie: <html> <body> Some text <!-- some...
  19. BigTeeJay

    &quot;ON T1.id = T2.id&quot; vs &quot;ON T2.id = T1.id&quot;

    Hey, I havent been able to tell if the sytax of the below makes a difference, does anyone know? Consider... SELECT T1.ID, T2.Name FROM Table1 T1 INNER JOIN Table2 T2 ON T1.id = T2.id versus... SELECT T1.ID, T2.Name FROM Table1 T1 INNER JOIN Table2 T2 ON T2.id = T1.id...
  20. BigTeeJay

    Is this possible? Connecting to a remote PCs DSN?

    Greetings all, I am trying to find the best method for connecting to a remote ODBC data source. I've been searching several of the forums & their FAQs here (as well as on the web in general). Here is the scenario. I have a File to which I have an ODBC driver installed on a Server (its a...

Part and Inventory Search

Back
Top