Jump to content
Xtreme .Net Talk

Robby

Moderators
  • Posts

    3848
  • Joined

  • Last visited

Everything posted by Robby

  1. The Validating and SelectedIndexChanged are completely different. I sorry but I don't find any of it inconvenient if used properly.
  2. Do you want this as part of a distribution package? I think I still don't understand.
  3. Also, instead of using the Leave event try the SelectedIndexChanged...
  4. Create a function that check if the tab needs to be saved, then return a boolean. Have the Leave(tab) and Save and Exit call this function. Then each event can continue with their respective task depending if the user decides to save or not (if needed).
  5. Does this have anything to do with Deployment? (Maybe I misunderstood the question)
  6. I don't know about our other members, but I've only created a few simple CR reports using .NET. So for myself, I will need to create a few real-world solutions before I can provide real help with CR.
  7. Derek, this is true, but when a link directs a user away from the original site, isn't it better to open a new browser.
  8. Did you change the data source after you created the report?
  9. I find the best way to make a copy of a project and all the files related to it is... copy the entire folder.. If what you want is to rename the project, then do so in the Solution Explorer.
  10. Does the server have the Framework installed?
  11. MyCommand.ExecuteNonQuery().... This returns how many rows were affected by the Delete, Insert or Update. If the value is 10, then 10 rows were (let's say) Inserted.
  12. It works great but shouldn't it open a browser? (instead of using the current window)
  13. It sounds like it might be in tri-state mode, see if there's a property to set tri-state to false.
  14. Look into the using the CurencyManger with a DataTable.
  15. you can find the real basics here... http://www.w3schools.com/ado/ado_examples.asp and here .... http://www.w3schools.com/sql/default.asp
  16. In SQL Server Enterprise Manager you can right-click on the object (table, Stored proc) and select All Tasks > Generate SQL Script.
  17. one more question... Using .Net code or in the designer?
  18. you can use Styles... <td style="cursor: hand"> </td>
  19. Do you mean execute?
  20. check this... http://www.microsoft.com/downloads/details.aspx?FamilyId=BF253CFD-1EFC-4FC5-BA7E-6A6F21403495&displaylang=en
  21. You may need to do this on the client side.
  22. yup... "....where FieldName Like 'Tex%'" 'or dim s as string = "Tex" "....where FieldName Like '" & s & "%'" 'btw, that's a Percent sign
  23. Does the value in SearchString exist in the table?
  24. what's the value of Catagory, is it a field name? And is there a valid value held by SearchString ? Also, don't surround it with the single quotes. Dim MyCommand As New OleDbCommand("SELECT Jack_Name, Jack_Location, IDF_Location, " & _ "Patch_Panel_Number, Port_Number, Cable_Type, Assigned_Port_on_Switch, " & _ "Assigned_Vlan from Cable WHERE " & Catagory & " = '" & SearchString & "'" & _ "order by " & Catagory , MyConnection)
×
×
  • Create New...