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

  • Users: JustBarno
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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?
  5. 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...
  6. 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...
  7. 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...
  8. 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?
  9. 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...
  10. 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...
  11. JustBarno

    Insert Trigger Questions...

    One of our offices is running a special, the fee for services is less than normal I don't have access to the code that adds the fee, so I figured a trigger would work. I'm creating a trigger to change a fee inserted into the database if the purchase originated from that specific office. Ive...
  12. JustBarno

    ASP.NET and Exchange 2003

    I've never worked with Exchange before. Can someone point me towards a good "help guide" or maybe create a quick sample that logs into exchange and returns the unread mail count? Something to get me started. Thanks, -Justin
  13. JustBarno

    Append paramater to end of text datatype in stored prodecure.

    in the following stored procedure, how would I append the @notes param to the end of the column named notes with the datatype of text. CREATE PROCEDURE PMC_Bro_UpdateBlast @Fax int, @Email int, @CustId varchar(10), @notes varchar(100) AS Update tbl_cust SET fax = @fax, email = @email WHERE...
  14. JustBarno

    Add Attributes to Elements in VS.NET IDE?

    Is it possible to add attributes (ie: leftMargin, bgcolor, class) to elements (<body>,<td>,<table>) in the VS.NET IDE? I'd like to eliminate the warnings caused by the attributes not being found. Thanks, -Justin
  15. JustBarno

    User Control Event Processing Order

    I have an upload control I created on an ASP.NET page, the submit button saves the file to the server, and at that point I would like to do some processing of the file. I tried calling my "process function" in the page load event for the ASP.NET page that contains the upload control, but it...
  16. JustBarno

    Batch Add

    What is the most efficent way in ADO.NET to add every row in a datatable to a table in SQL? For example, I have a list of tasks in an excel spreadsheet. I load it into a datatable, and now want to enter each of those tasks into the Tasks table in my SQL server. I know a few ways to do it now...
  17. JustBarno

    Excel cannot access 'bobsmith.xls'. The document may be read only or.

    encrypted. Except it isn't read only, or encrypted. It is happening on this line: xlWorkBook = xlWorkBooks.Open(strFile, True)
  18. JustBarno

    Excel Permissions Error

    Any Ideas? Server Error in '/BrokerAdmin' Application. -------------------------------------------------------------------------------- Access is denied. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more...
  19. JustBarno

    Excel Permissions Error...

    Any Ideas? Server Error in '/BrokerAdmin' Application. -------------------------------------------------------------------------------- Access is denied. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more...
  20. JustBarno

    Dynamic &quot;id&quot; for checkbox in datagrid

    Pardon my ignorance, I'm a .NEWBIE, making the move from classic ASP. I'm populating a datagrid with a list of brokers. I need a checkbox in column one for each broker. Now normally, I would populate the "id" property of the checkbox control with a dynamic name based off the primary key of...

Part and Inventory Search

Back
Top