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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by BobBob10

  1. BobBob10

    Delete Bindings

    OK: Dim i As Integer = objAddTo.Items.Count Dim SortListA As ArrayList Dim j As Integer Dim k As Integer Do While i > 0 If objAddTo.Items.Item(i - 1).Selected = True Then Me.objRemoveFrom.Items.Add(Me.objAddTo.Items.Item(i -...
  2. BobBob10

    Delete Bindings

    Ok sorted it
  3. BobBob10

    Delete Bindings

    How do I delete the bindings from a list box. My code fails at: Dim i As Integer = objAddTo.Items.Count Dim SortListA As ArrayList Dim j As Integer Do While i > 0 If objAddTo.Items.Item(i - 1).Selected = True Then...
  4. BobBob10

    2 list boxes

    Hi, I am wanting some help with list boxes. I have a web form with two list boxes (1 for available list and the second for selected list). What I want is some code which will be able to transfer one item from the first list box and transfer this to the other. Any ideas? Bob
  5. BobBob10

    Outlook Member Of

    Hi, Does anyone know how to download all the members from outlook into Excel. Or point me in the right direction. Thanks Bob
  6. BobBob10

    txt box error

    code as follows <TR> <TD style="WIDTH: 177px" noWrap align="right"> EMail Address</TD> <TD noWrap width="200"><asp:textbox id="txtMail" runat="server" Width="184px"></asp:textbox></TD> </TR> Thanks
  7. BobBob10

    txt box error

    I have a standard text box with no style attached. However, when my page loads this text box turns yellow. This is because of the text in the td next to the control. If this TD reads Email then the control turns yellow!!! Any ideas how to stop this?
  8. BobBob10

    determine numeric values in string

    How can I extract the numeric values and place in another column?
  9. BobBob10

    determine numeric values in string

    cool, what does patindex ('%[^0-9]%', addr) do?
  10. BobBob10

    determine numeric values in string

    until the first space
  11. BobBob10

    determine numeric values in string

    Hi, In a field called address I have records such as: 25 Steven Rd Bloggs Avenue How can I determine whether the first couple of charaters are numeric or text?
  12. BobBob10

    delete from table

    cheers Bob
  13. BobBob10

    delete from table

    When I delete from a table without setting the where clause, everything is deleted. However, when I insert into the table again the identity starts where it left off and not at 1 again. Does anyone know how to stop this?
  14. BobBob10

    Active directory

    doesn't work already tried it. Thanks anyway
  15. BobBob10

    Active directory

    The example below returns the full name from Active directory. How do I return other information such as email address etc? [code] Dim dsDirectoryEntry As DirectoryEntry strPath = "WinNT://" & strDomain & "/" & strLogin dsDirectoryEntry = New DirectoryEntry(strPath) strFullName =...

Part and Inventory Search

Back
Top