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 strongm 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. bateman23

    Messenger/Netmeeting - Application Sharing with more than one user

    Hi, thanks for the answer. I was trying to do so and "hosting a meeting". The other person could enter my IP and i saw her in the list. However i was not able to either chat, talk or share my apps. Any idea what went wrong and what could be a solution? Is there probably another (free) product...
  2. bateman23

    Messenger/Netmeeting - Application Sharing with more than one user

    Hi, i'm trying to use Microsoft Messenger/Netmeeting with "Application Sharing". Until now i only manage to get one user seeing my apps. Is there any way to grant access to a second user as well? According to the message in Messenger it's not possible. But at least Netmeeting should work. Any...
  3. bateman23

    build variable-names out of strings

    Very nicely written article. And despite it doesn't exactly match my situation it makes things just even more clear: Although making things at first glance a lot easier, dynamic named vars are not the best thing to use... I hope i'm able to solve the problem in another way (like arrays) and...
  4. bateman23

    build variable-names out of strings

    Thanks to both of you. So it seems i have to think about using arrays instead.. and trying to forget my scripting-style of thinking :) But anyway i'll miss the feature of building vars at runtime... --------------------------------------- Visit me @: http://www.daniel-purucker.de/
  5. bateman23

    build variable-names out of strings

    Hi, is there any posibility in java to build variable names out of strings at runtime? I got and array of values and want to create variables out of them: The Array: String my_array[] = new String[] {"one", "two"}; And i need to build this two variables: error_one="Value"; error_two="Value"...
  6. bateman23

    variable-names inside an array

    Thanks for the hints sedj. An Array of objects did the job... - nearly Object check[]= new Object[] {name, street}; // Array initialisieren for(int i=0;i<check.length;i++) { if(check[i].equals("")) { write=false; out.println("Error"); // ** HERE ** here occured another problem **...
  7. bateman23

    variable-names inside an array

    Hi, i wonder if there is a way of storing and accessing variables inside an array. To make things a little more clear, i used coding PHP and the following construct has been one of my favourite ones: $checkarray=array("name", "street"); foreach($checkarray as $value) {...
  8. bateman23

    Nested Select in Update statement

    :dohhh: Thanx, that's it. Upgrading to 4.1 did the job. --------------------------------------- Visit me @: http://www.daniel-purucker.de/
  9. bateman23

    Nested Select in Update statement

    Oh sorry for nit posting the error-message, but i thought it's the sort of standard-err. So here it is: mysql> SELECT IF((SELECT count(*) FROM acronym LEFT OUTER JOIN link_acronym ON acronym.id_acronym = link_acronym.id_acronym WHERE projekte_nr="23" < 1),'NO','YES'); ERROR 1064: You have an...
  10. bateman23

    Nested Select in Update statement

    mhh.. i just get SQL-Errors. So i tried to strip down the code, and now i'm with this small part.. and still get error: SELECT IF((SELECT count(*) FROM acronym LEFT OUTER JOIN link_acronym ON acronym.id_acronym = link_acronym.id_acronym WHERE projekte_nr="23" < 1),'NO','YES') What am i doing...
  11. bateman23

    Nested Select in Update statement

    Hi, my nested Select-Update-Statement doesn't work. I think it's because the SELECT-Statement returns an empty set.. is there a posibillity to run this statement if there is no empty set and insert NULL if it is? Or is there another error at all? UPDATE proj_user_suche SET acronym = (SELECT...
  12. bateman23

    submit form

    Just an idea: Cant you just change the action-page to: action="index.php" --------------------------------------- Visit me @: http://www.daniel-purucker.de/
  13. bateman23

    mixed up multi-dimensional array

    Nobody? Any suggestions are welcome... --------------------------------------- Visit me @: http://www.daniel-purucker.de/
  14. bateman23

    mixed up multi-dimensional array

    Oh, forgot to mention, that this is caused by using array_values() to reindex the array... But i think i need to use this, because without i get: Array ( [0] => Array ( [0] => Array ( [0] => [1] => Projekt-Nummer...
  15. bateman23

    mixed up multi-dimensional array

    i've got a multidimensional array. After inserting and removing some things i got it mixed up somehow. It looks like that: (Notice that the second dimension is 0,2,1,3) I need the first two sets of information inside the first two arrays (0 and 1). To make it a bit more clear: What i got is...
  16. bateman23

    just full arrays for array_intersect... how

    Thanks a lot. That's awesome... I really couldn't that figure out by reading the documentation. --------------------------------------- Visit me @: http://www.daniel-purucker.de/
  17. bateman23

    just full arrays for array_intersect... how

    Hello everybody, i need to create the intersection of multiple arrays. I'm aware that this is done with the array_intersect-function. My problem is, that - at runtime - i don't know which arrays are filled and which are empty. So now the array_intersect throws an error-message "argument x is...
  18. bateman23

    Dynamical SQL-Query over different tables

    Thanks a lot --------------------------------------- Visit me @: http://www.daniel-purucker.de/
  19. bateman23

    Dynamical SQL-Query over different tables

    Hello i've got a big, big PHP, SQL-search statement problem. I've got a lot of tables looking like that: projekte: nr: INT name: INT foerder_de: TEXT foerder_en: TEXT ... and more... acronym: id_acronym: INT name: VARCHAR link_acronym id_link_acronym: INT id_acronym: INT projekte_nr: INT...
  20. bateman23

    Update-Statement doesn't work...

    rac2, thanx a lot for the hint. The following code turns out to be right: UPDATE link_keyword, keyword SET link_keyword.id_keyword = keyword.id_keyword WHERE keyword.schlagwort = "Frühindikatoren" AND link_keyword.projekte_nr = "6" AND link_keyword.tmp_keyword =...

Part and Inventory Search

Back
Top