Search results for query: *

  1. N

    Problem with wrapping text in Firefox

    Have you tried setting a pixel width on the div surrounding your <ul> tag? Something like <div style="width:200px;text-align:left"> Let me know if that works. Thanks, Nick
  2. 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...
  3. N

    What edition of SQL SERVER do i need?

    Since you are just learning SQL Server 2000 for the first on your own personal time you are going to want to use Personal Edition.
  4. 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...
  5. N

    Nesting WebControls in CustomControl

    Anyone have an idea? If anyone has any idea on how to do this please let me know... Even a suggestion would be nice... I was messing around with the HTMLTextWriter and the Write function completely removes any trace of an <asp:Control> tag... I just wanted to let you guys know that I was...
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. N

    Hiding one column in Datagrid

    Gambit_NI, Doesn't seem like DataGrid1 has a Columns property. DataColumns doesn't have a visible property either... Any other ideas? Thanks nju0843
  11. N

    Hiding one column in Datagrid

    Gambit_NI, When I type: dt.Columns(0) there is no apparent visible property. if you can please show me the code to make the id column hidden. That would be great! Thanks, nju0843 PrivateSub Form1_Load(ByVal sender AsObject, ByVal e As System.EventArgs) HandlesMyBase.Load Dim dt...
  12. 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...
  13. 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...
  14. N

    Problem updating mySQL table usign information in DataGrid

    Thanks for showing me that! My co-worker showed me that today... and I forgot exactly what function he showed me and that was it. Thanks!
  15. N

    Problem updating mySQL table usign information in DataGrid

    Call myCommand.Parameters.Clear() after ExecuteNonQuery Call myCommand.Parameters.Clear() after ExecuteNonQuery
  16. 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