Search results for query: *

  • Users: nju0843
  • Content: Threads
  • Order by date
  1. N

    Is SQL Server 2005 Symmetric Encryption affected by the SMK and DMK?

    I was playing around with Symmetric Encryption on a SQL Server 2005 test database last night. I set up a table with some encrypted fields and also encrypted the DMK with the SMK. I then simulated a corrupt database or a broken server by moving my test db from computer A to computer B with a...
  2. N

    URGENT: <asp:Button> nested in Custom Control not getting fired.

    I hate marking things urgent... I am on a deadline and I need to know how to fix my issue. I need this by noon so ANY help will be greatly appreciated! My co-worker wrote some nice HTML and CSS to make a rounded box in our webpages. We decided we wanted to use this same style in other...
  3. N

    Nesting WebControls in CustomControl

    Hello All! I was wondering if you knew of a way to allow nesting of a webcontrol inside of the custom control I am creating. For instance... <cc1:ControlFrame> <asp:Label text="Keyword 1:"/> <asp:TextBox id="txtKeyword1" runat="server"/> </cc1:ControlFrame> For the html above...
  4. N

    Background Image not displaying right on Widescreen Monitor...

    Well the title pretty much says it all. I am developing a windows app for a friend. The window takes up 800 x 600 pixels on the screen. The image is 800 x 600 pixels, everything displays just fine on all 4:3 standard resolution monitors. On his monitor it shows the whole image but the window...
  5. N

    Just In Time Debugger won't show up...

    I am trying to debug some Javascript in my WebForm...I have enabled Script Debugging in Internet explorer and have enabled the Just In Time Debugging for Scripts in VS .NET 2003. When the script error occurs: A Runtime Error has occured. Do you wish to debug? I click YES and the JIT Debugger...
  6. N

    Third Party Tools for SQL Server 2000 Desktop Engine

    Hello All, ***Many apologies if this is the wrong forum to post this in, but it is the most appropriate one I could find.*** I have SQL Server 2000 Desktop Engine, I was wondering if anyone knew of any front ends for this edition. I am used to using Query Analyzer and Enterprise Manager at work...
  7. N

    Hiding one column in Datagrid

    ***This message is a bit long but please bare with me.*** Hello all, I have a mySQL table named Budget that has the following 4 columns: id, date, starting_balance, remaining_balance I fill a Datatable with these fields. I then take the DataTable and bind it to a DataGrid. The problem is...
  8. N

    Problems with DataGrid, DataSet, and DataAdapter combination

    I am using a DataSet with 3 tables which is bound to a DataGrid I am trying to take data that is entered/changed in the DataGrid which should automatically update the dataset. Then call dataAdapter.Update(datasetname,"TableName") I am trying to update my database using the dataadapter...
  9. N

    Problem updating mySQL table usign information in DataGrid

    Hello All, I am having trouble updating the table in my database that corresponds to my datagrid. I am able to change the first row of my datagrid but if I change another row in the datagrid before clicking update then only the first row gets updated and nothing else does. This routine is in...
Back
Top