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 Mike Lewis 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. JustBarno

    Transaction Monitoring

    One more bump to see if anyone else has heard of such a program. If not, maybe I'll make one, haha.
  2. JustBarno

    Transaction Monitoring

    Here is my dilemma. I would like a program to help me do the following: 1. Change a value on the front end of a program. 2. Notify me of what table/fields changed in a monitored SQL Server database. What their old, and new values are. This is to assist me in properly mapping fields to our...
  3. JustBarno

    Redundant Hosting?

    I am currently researching web hosts as our company attempts to build its disaster recovery infostructure. What I seek is a web host that automatically handles replication (to servers in different locations), monitoring, and DNS modifications (upon failure). I know that it is possible to...
  4. JustBarno

    How does terminal server resolution effect bandwidth required.

    We are looking to up our standard resolution from 8x6 to 1024x768 due to some new software that just doesnt fit right in 8x6. How would that bump in res effect the amount of bandwidth required by Ts (percentage wise). Assuming that we have sufficent bandwidth, would we see any other type of...
  5. JustBarno

    OLEDB excel import only selecting "string" values.

    Dim sConnectionString As String = "Provider=Microsoft.Jet.OLEDB.4.0;" _ & "Data Source=" & strPath & strFile _ & ";" & "Extended Properties=Excel 8.0;" ' Create the connection object by using the preceding connection string. Dim objConn As...
  6. JustBarno

    OLEDB excel import only selecting "string" values.

    Dates, and number fields are just empty cells in the DataTable resulting from the select statement. Any idea what might be wrong?
  7. JustBarno

    DCOM security issue (activation options not listed)

    it appears that the reason that those options are not there is because it is a windows server 2003 box instead of an XP pro box (none of my 2003 boxes have those options). It appears that DCOM needs to be configured differently on WS2003. Any help or direction is greatly appreciated.
  8. JustBarno

    DCOM security issue (activation options not listed)

    I wrote a asp.net program that utilizes excel. In order to make it work, I had to add permissions in DCOM for the ASP.NET account to run excel. It works great on my system, but when the time came to copy to production, the DCOM security for Excel application does not list local activation or...
  9. JustBarno

    Maintaining State in a web control library.

    I have a web control library that I've recently finished developing. However, I'm having a problem maintaining state. I have the following code If not ispostback then ctrl.Property1 = x ctrl.Property2 = y ctrl.Main() 'runs the business logic and sets the [text] property end if The...
  10. JustBarno

    Set a webcontrol's properties before rendering?

    I have a web control that has a property of UserId. I need to set the userid before rendering the control, because based on who is logged in, it displays something different. If I set the properties in page load for the page the control is placed on, it seems that is post render because the...
  11. JustBarno

    Slow Network Printing after installing SP2

    All the systems at my office that have SP2 now take upwards of 5 minutes to send a job to the printer. It appears that nothing is happening and then 3-5 minutes later, the job starts... Any suggestions?
  12. JustBarno

    Passing custom objects between webservices.

    I ended up just changing the second web service to accept individual paramaters instead of the object. It appears that despite typing from the same class, each web service creates its own type in a seperate file and uses that.
  13. JustBarno

    Passing custom objects between webservices.

    I have two web services, one of them returns a custom object, the other has the same object type as a parameter. CustomObject = Webservice1.Function1(param1, param2, param3) Webservice2.Function2(CustomObject) The CustomObject is defined in a class library, and both web services reference...
  14. JustBarno

    Problem binding datagrid in Page_PreRender

    I have narrowed my problem quite a bit but am still having issues making a work around. I am using a datagrid to display a 2d matrix of users and security levels. Different applications have their own applicable security zones, so the columns are genereated dynamically with checkboxes to...
  15. JustBarno

    Insert Trigger Questions...

    Found some help elsewhere CREATE TRIGGER FixFee ON [dbo].[fees] FOR INSERT AS UPDATE fees SET total = '595.00' WHERE EXISTS (SELECT * FROM inserted AS i JOIN purchase AS p ON p.file_id = i.file_id WHERE p.site_id = 22 AND i.KeyColumn1 = fees.KeyColumn1 AND...
  16. JustBarno

    Info on Temp Tables

    http://www.sql-server-performance.com/rd_temp_tables.asp
  17. JustBarno

    Concatenating columns

    SELECT ('Saturday ' + field1 + 'sunday ' + field2) as newvalue FROM table

Part and Inventory Search

Back
Top