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!

Search results for query: *

  • Users: BobBob10
  • Content: Threads
  • Order by date
  1. 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...
  2. 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
  3. 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
  4. 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?
  5. 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?
  6. 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?
  7. 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 =...
  8. BobBob10

    Vb.net to work

    I can't view the word document which I have created. Dim oWord As New Word.Application Dim oWordDoc As Word.Document oWord.Documents.Add() oWordDoc = oWord.Documents.Add() why is this?
  9. BobBob10

    PanelBox

    Hi I have a panel box which dynamically adds labels at run time. However, the panel display is always at the top. When I add labels I set application.doevents so the user can see the labels being drawn. However I want the user to be able to view the bottom of the panel, maybe something like...
  10. BobBob10

    Screen Updating

    I have a program that when you go from one form to another, on the second forms load event I run code that dynamically creates controls and places them in a panel. However, only after the program has ran the controls appear. What I want is the controls to appear as the program runs. How could...
  11. BobBob10

    Bold Issue

    How do I make a label bold at run time? Can't seem to do it, is it because the property is read only?
  12. BobBob10

    swith between .xls and Outlook

    I have this code which opens outlook and displays an email. However, I was wondering how to then switch back to excel from outlook. Sub EmailandSaveCellValue(ByVal strRec As String) 'Variable declaration Dim oApp As Object, oMail As Object, WB As Workbook, _ FileName As...
  13. BobBob10

    New App Question

    Hi there I'm creating an App where I want to write everyones IP address and UserName to a SQL Table. However, I was wondering how to go about this. Do I need to create a windows app that needs to be loaded onto everyones machine so that everyday I can get that information. Any ideas. Cheers...
  14. BobBob10

    list box tick box

    What control do I need so that I have a list box and on the list box tick box which appears to the right. Is this a common control.
  15. BobBob10

    Populating list box

    Using the following code Dim blnGotListOfSQLServers As Boolean Dim colSQLServers As Collection Dim objSQLServer As Object Dim m_dataset As DataSet Dim m_clsNetAPI32 = New clsNetAPI32 blnGotListOfSQLServers =...
  16. BobBob10

    List all servers

    Hi, I'm trying to list all SQL servers using vb.net. I have added a refernce to SQLDMO and I am using the following code (which I found off another site). Dim oDmoApp As New SQLDMO.Application Dim oDmoList As SQLDMO.NameList Dim i As Integer oDmoList =...
  17. BobBob10

    List parameters

    Hi is there a stored procedure that I can run that will list all the parameters that are associated with that stored proc?
  18. BobBob10

    Start up web form

    How do you change the startup form in a web project?
  19. BobBob10

    Simple Question

    Hi there I know how to create web pages but I am unsure how to create a total project where ever page you access, the top of the page remains the same. For example with this web site no matter which page you browse the logo, donate, start a group jobs is always present. What do I need to...
  20. BobBob10

    Creating a function that returns a temp table

    Hi I ant to create a function that returns a temp table. What I want to do is pass a string into a funtion then this function returns a table. My string will be '215,216,303,782' The table it returns will be ID 215 216 303 782 My function will have the main code like CREATE TABLE...

Part and Inventory Search

Back
Top