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. Mesk69

    Quick Question

    I'm creating a news engine using a invision board. I'm getting a problem that I'm not familiar with. I never used mysql before I'm use to PL/SQL. This is the error I get: SQL-query : [Edit] SHOW FIELDS FROM `theguildwars_net`.`p` LIKE 'post' MySQL said: Table 'theguildwars_net.p' doesn't...
  2. Mesk69

    Calling a function on change. Little help ;)

    I'm having a problem with an aspx. I'm just learning how to use aspx and I can't seem to find my problem. In my page I have the following function and I call it with the statement that follows. I'm looking at alternate ways to fix this. If the problem is obvious I'd appreciate the help. Thanks...
  3. Mesk69

    Fatal Error: missing resource: java.util.PropertyResourceBundle

    Yep I am, I ever tryed including java.util.PropertyResourceBundle
  4. Mesk69

    Fatal Error: missing resource: java.util.PropertyResourceBundle

    Hey guys, I've been trying to get some java beans to work. This is the error I've been getting lately. Fatal Error: missing resource: java.util.PropertyResourceBundle Anyone have an idea as to what the problem is? Thanks for taking the time to read and write ;) Mesk
  5. Mesk69

    haschange() alternative?

    I'm currently using 2 datagrids. 1 to navigate and the other displays the information related to what you selected in the navigation datagrid. I can make some changes to the datagrid with the information. Now I added some code that uses the .haschange to check if any information was modified...
  6. Mesk69

    Getting the focus on a datagrid?

    I have 7 datagrids on my forums. I'm trying to find out which datagrid has the focus. If anyone has an idea on how this is done I'd greatly appreciate the help. These are the 2 codes statments I tryed: If ActiveControl Is dgSemester1 Then If dgSemester2.Focus Then Thanks for taking the time...
  7. Mesk69

    Retreiving multiple strings from a listbox

    Thanks John. With what you gave me, I was able to get it to work: Dim course_codeItem As System.Data.DataRowView For Each course_codeItem In lbCourse.SelectedItems course_code = System.Convert.ToString(course_codeItem.Item(0))) Thanks again for your time and efforts. Mesk
  8. Mesk69

    Retreiving multiple strings from a listbox

    I tried something like that before, but tried it again just to make sure and the string that it returns is "System.Data.DataRowView". All I would really need is the code you gave me earlier: For I = 0 To ListBox1.Items.Count - 1 if ListBox1.getSelected(I) = True then ...
  9. Mesk69

    Retreiving multiple strings from a listbox

    Thanks for your help so far John. However, my main problem is getting the value of the ListBox item. I can't seem to find a method which returns the text. Using that for loop, I can determine which list items are selected but I still don't know how to get their value. The closest I got to...
  10. Mesk69

    Retreiving multiple strings from a listbox

    Sorry I spoke too soon. I found out how to make it possible to use ListItem. Now however, I have a new problem. This line: For Each course_codeItem In lbCourse.SelectedItems Gives me this exception: An unhandled exception of type 'System.InvalidCastException' occurred in ProgramCourse.exe...
  11. Mesk69

    Retreiving multiple strings from a listbox

    I can't even seem to find the ItemList Class. How do I intergrate it into my project? I tried looking it up and found it in the help but I can't seem to implement it. ListItem doesn't come up. Thanks for taking the time to read and reply. Mesk
  12. Mesk69

    Retreiving multiple strings from a listbox

    Hi guys, I'm having a simple problem, I can't beleive I'm stuck trying to get this work, but I can't retreive information from a list box. I can't seen to be getting a string from it. This is the code I use. Any help would be greatly appreciated. Thanks for taking the time to read. Mesk For...

Part and Inventory Search

Back
Top