About 41,200 results
Open links in new tab
  1. asp.net - C# to Java converter? [SOLVED] | DaniWeb

    hello, is there currently a tool which can convert C# codes to Java (for example to be used in NetBeans)?

  2. socket programming - How to stop accept call? | DaniWeb

    Hi, i have question about accept call interrupting. As you can see I have a loop which is controlled by boolean [B]not_ended[/B]. I set this var to 0 ...

  3. java - Convert Image to String | DaniWeb

    Hi Can someone please let me know which classes, objects, etc I should use into to convert an image file (.png, probably) to a printable string in Java? ...

  4. Programming Forum | Discuss 'c++' 'java' '.net:vb.net' | DaniWeb

    Our Programming forum category encompasses application development, web development, programming theory, and everything in between.

  5. convert C code to java | DaniWeb

    When porting to Java, model the data explicitly (Vertex, Edge, Loop), read with BufferedReader, and prefer List over fixed-size arrays. Compute areas in double (accumulators can be long to …

  6. Software Development Forum | Discuss 'c++' 'java' '.net:vb.net'

    Our Software Development forum encompasses topics related to native application programming design and development.

  7. assembly - converting python into mips [SOLVED] | DaniWeb

    Hello all, i need your help regaring this code, which is in python and i need to convert it into mips?? ...

  8. Converting C++ Code to Python [SOLVED] | DaniWeb

    Apr 13, 2010 · We don't need to specify a size for the array, basically the python 'for..in' loop will loop until it reaches the end of the array, unlike C++ which would happily stomp past the end …

  9. python - datepicker value converted to an integer | DaniWeb

    I have a datepicker on my form that I need to use as an integer value in the form yyyymmyy in an sql procedure. Can anyone tell me how to extract the ...

  10. python - command line boolean [SOLVED] | DaniWeb

    sys.argv always gives you strings, so any non-empty value like "True" or "False" will evaluate truthy. Rather than passing literal booleans, prefer CLI flags and let the parser set a real bool. …