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 SkipVought 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. 160473

    Move RAID-5 drives to a new server

    Old Server: IBM X235 ServeRAID 6i 3x73,4GB , RAID5 Suse 9.1 Pro New server: IBM X236 ServerRAID 6M Is it possible to take the harddrives from the X235 and put them in the X236 and just push power button? The OS is installed on the RAID5 package... Does Suse use different drivers for the 6M...
  2. 160473

    Samba with Windows 2003 slave server

    I'm currently having a network with one Linux/Samba server acting as primary domain controller. Now I need to connect a Windows 2003 server to the network acting as a database/software server (financial software). Is it possible to have the Windows server connected to the domain as a slave...
  3. 160473

    Change CR fields at runtime

    Thanks! That was a new approach to the problem ;) No need to create code, done that already and it works greate!!!
  4. 160473

    Change CR fields at runtime

    I run a mysql query that populates as dataset. This is then used for displaying data in a Crystal Report. But now to the problem. The dataset contains many columns but only a few is used in the report. Is it possible to change the datafields in the report to show different data based on what I...
  5. 160473

    Assign keys to scrollbars

    I have dynamicly created controls on a panel. The panel has got 'autoscroll' enabled and everything works fine. The crollbars show up as they should. The only problem is that this software must operate whitout a mouse... (Kiosk mode). Are there any clever persons out there that can tell me how...
  6. 160473

    Form close when clicking outside

    nope... If i put me.close() in 'Private Sub Form9_LostFocus(By...Handles MyBase.LostFocus' then the form closes directly after it opens... Maby because it contains buttons, labels, comboboxes...
  7. 160473

    Form close when clicking outside

    A have created a form as a custom menu but I don't know how to close it if I click outside it (same behaviour as a contextmenu). The form i opened when I right-click on a datagrid.
  8. 160473

    Textbox in Contextmenu

    Done that but it does not behave like a real contextmenu... I like it to dissapear when the listview gets focus and so on.
  9. 160473

    Textbox in Contextmenu

    I have searched the whole internet for a solution... I have a listview that needs a search function. So I need to put a textbox in the contextmenu to write the search criteria in (like in access). Is this possible?
  10. 160473

    Search row in datagrid

    I have a datagrid binded to a dataset and it shows data ok. Now i need a search function... I have created a textbox where the users can write their search string. I need a function that hilights the row in the datagrid corresponding to the value they just entered in the textbox.
  11. 160473

    Events on dynamic controls.

    Sorry! My misstake, I assigned the event to the wrong label... When I clicked the right one, everything worked!
  12. 160473

    Events on dynamic controls.

    Yes this works greate if I create one control and do a AddHandler on that control. But if I create many controls like this: Private Sub Create_Label() for i = 0 to 9 dim MyLabel as new Label With MyLabel .Location = New System.Drawing.Point(10, i*20)...
  13. 160473

    Events on dynamic controls.

    I have dynamicly created textboxes in a windows form. Now I need to create mouse click events to the textboxes and I'm stuck... I normal cases this would be the solution: Private Sub TextBox1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles TextBox1.Click...
  14. 160473

    Delete records from dataset.

    Thanks!!! You are the star of .NET!!!
  15. 160473

    Delete records from dataset.

    I have a table in a dataset. I need to delete several rows in that table. But if I do like this: For Each row In newDataTable.Rows If row(1) = 505050 Then newDataTable.Rows(linenr).Delete() End If linenr = linenr + 1 Next then...
  16. 160473

    vb.NET Datagrid vith MySql

    No I'm NOT looking for a solution for ASP.NET. VB.NET my dear friend.
  17. 160473

    vb.NET Datagrid vith MySql

    I have populated a datagrid with data from a MySql table in normal maners (MySqlDataAdapter, DataTable etc). Now, when I change data (rows or cells) the data in MySql must change at the same time. All information I can find is about asp.NET with a [EDIT] button. I like the datagrid to function...
  18. 160473

    Excel lookup list

    Thank you all!!! http://www.contextures.com/xlFunctions02.html
  19. 160473

    Excel lookup list

    I have a excel workbook that contains 2 sheets. The first is a regular calculation and the second consists of two columns. The first coulmn is filled with Customer IDs and the second is the Costumer Names. Now I need a macro that looks up the name in the second sheet when I type the ID in the...
  20. 160473

    Permissions on subdirectories

    I'll try! Thanks!

Part and Inventory Search

Back
Top