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 Mike Lewis 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. keizersoz

    Deterministic network enhance

    Hello, I just installed cicsco system VPN clients. I was told by system administrator to disable "Deterministic network enhance". Can someone please tell me where I can do this? I couldn't find it in services.msc? thanks,
  2. keizersoz

    query result

    Hello I'm designing a universe with BO version 6.5.1. I have some troubles with testing queries. [to get query Panel: ->double click an object ->object properties ->properties ->edit] When I drag to objects from different tables (namely table1.PrimaryKey and table2.ForeignKey) on the Query...
  3. keizersoz

    connection problem

    in an attempt to create a new universe (in Business Objects 6.5) while establishing the "connection test" I recieve following error: " DBD:[Microsoft][ODBC Microsoft Access Driver]General error Not enough information to connect to this DSN with SQLConnect. Use SQLDriverConnect" Can someone...
  4. keizersoz

    paint-repaint-update

    I'm new to java and a bit confuse by the following three methods: paint, repaint, update. Especially the difference between the two latters. Can someone please explain in brief the usage of each method? thanks a lot, Herman
  5. keizersoz

    warning

    How do I do that? I don't have a clue what serialVersionUID means! thanks,
  6. keizersoz

    warning

    What does following warning means? "The serializable class ButtonTest does not declare a static final serialVersionUID field of type long" thanks
  7. keizersoz

    business objects definition

    In the past I have worked with SQL server. For a certain job they ask knowledge of oracle and business objects. I have allready read some basics of business objects, but I'm still confused. In SQL server there was the opportunity to create tables and to ask queries, draw graphs,..... 1)Has...
  8. keizersoz

    math experts?

    I copied the paint method from a book. In the function drawline they used following calculations: int dx = (int)(r * Math.cos(angle * Math.PI / 180)); int dy = (int)(r * Math.sin(angle * Math.PI / 180)); Does someone has an idea what is exactly the meaning of these calculations? FULL METHOD...
  9. keizersoz

    environment tools

    I noticed I had on my computers twice the environment tools so I removed everything. Some development tools (JDK)apparently include running tools etc. I had on my computer Jcreator, ecilpse and still have jvisual studio.net 2000 installed. What should I install in order to avoid overlappings...
  10. keizersoz

    run failure

    I opened a new java.file (from internet) and when I run it (with eclipse) I get following mistake: "Could not launch the product because the associated workspace is currently in use". I can't figur how to get rid of this. thanks a lot, keizersoz
  11. keizersoz

    compiling different files with Eclipse

    Hey, I'm using Eclipse and I would like to write code in different files. Assume that file Ex9.java contains the main() method. a) If each file contains different classes, wich file should I comile. b)Assume I want to split methods of the same class in two files how could I accomplish that...
  12. keizersoz

    System.in.read()

    Thanks guys, One more question. In the following loop, see below: while (true) { System.out.println("Enter digit or -1 to exit"); input = (char) System.in.read(); System.out.print("input is:" + input+'\n'); ... } I only once manage to enter input. The other...
  13. keizersoz

    System.in.read()

    I use the method "System.in.read()" in order to read one char. But when I print out the output 2 other characters with asci '10' and asci '13' are read. Which characters are those and how can I ensure to read only one character? thanks
  14. keizersoz

    find digit in number

    Hi, I need to find out in a certain digit appears in an int. (for instance the digit 2 appears in the int 582). Does someone know some useful functions that can help me solve that problem. The only way I see to solve this is look at the length of the int and then by % getting all the digits...
  15. keizersoz

    for loop

    If in a for loop I want to impose more than one condition, what is the precisie syntax to do that; Should the different conditions only be separated by a "," I want "do something" to occur only if condition 1 and condition 2 are fulfilled , is this the correct syntax? Or should I add an and...
  16. keizersoz

    Build problem

    Actually I don't. Can it really be related to this?
  17. keizersoz

    Build problem

    I'm working with visual studio c++ 6.0 (couldn't get use to visual studio.net 2003, too many changes) and manytimes when I have a compilation error and I compile or build the project visual get stuck at this point , and when I click on "stop build" nothing happens. someone an idea what it could...
  18. keizersoz

    visual studio.net vs 6.0

    Hi to all, In the past I worked with visual c++ 6.0. , recently I start working with visual studio.net 2003. I see there are many changes. Have a few questions hope someone can help me. 1) About this "using namespace std". Isn't that the namespace of STL? What change did they do in vs.net2003...
  19. keizersoz

    Location method

    I want to make a program in vb.net, that contains a form and a button. And whenever the user approaches the button with the cursor, the location of the button is changed. So that the user never manages to click on the button. The program is a fake harddisk format. Questions: 1) Which event...
  20. keizersoz

    counter and password

    Hello all, Two questions. 1)I'm collecting password and login from user. I was thinking how I could keep track of this information. With a cookie? 2) How do I make a counter that each time that my site is visited the counter increases with one? thanks to all, D.T.

Part and Inventory Search

Back
Top