Search:

Type: Posts; User: DllD

Page 1 of 5 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    6
    Views
    15,303

    Re: What is Structure Padding in C ?

    hey thanks nirmalah. I just wish this all information are useful to you. Let me know if you want any further information on this. I really like to help. Once more thanks to liking my information.
  2. Replies
    7
    Views
    1,269

    Re: How to use tag in HTML5

    For the audio-day the same applies as for the video. <video> produces both sound and images, <audio> only processes the sound. Most of the audio tracks are only a subset of the video format. Thus,...
  3. Replies
    5
    Views
    983

    Re: Calling a JavaScript function from Flash

    I am providing some sample of example (so that you can understand easily :rolleyes: )
    within the tags <head> html page that incorporates our movie, paste:

    </ Head>
    <script...
  4. Re: How to do Asynchronous Programming with Delegates?

    For some object types .Net are the methods available as asynchronous versions. Their names start with "Begin" and "End". These asynchronous methods have similar signatures as those of the...
  5. Replies
    5
    Views
    1,589

    Re: Traditional hangman game not working in C

    Caution, do not confuse "empty string" with "string uninitialized". Keep this in mind. You can totally initialize a string to "" (which means that you put a zero in the first cell of the table) it...
  6. Re: Visual Studio Express: Delete data in a combobox

    I am providing an example for ListItemCollection. Remove Method (ListItem) that is used in VB. I am sure that you will get some hint from it. The following exhibit the code illustration creating...
  7. Replies
    4
    Views
    521

    Re: Deleting records using the application?

    Well do not know what database you are using but for example MySQL has an option to create referential integrity when you update or delete cascade, meaning that if you update the parent table, child...
  8. Replies
    5
    Views
    746

    Re: Character sets in MySQL

    As mentioned, MySQL handles character set and collation at several levels: server, database, table, column. Speaking of stored data, of course, what is relevant is what charset is used for each...
  9. Replies
    3
    Views
    1,545

    Re: Conditional structures for VBScript

    That's the same program with the structure of the first SELECT:

    <script language="VBScript">
    <! -
    Select Case Month (Now ())
    houses 1,2,3
    document.write "We are in the first quarter." ...
  10. Re: Synchronize a producer thread and a consumer thread in C#

    The example creates two auxiliary threads, or threads active. One thread produces components and stores them in a generic queue that is not thread safe. The other thread consumes items from this...
  11. Replies
    4
    Views
    1,188

    Re: Information about Windows API code Pack

    The Windows API code pack for Microsoft .NET Framework is a .NET library for the use of some of the new Windows 7 features and functions from older operating systems. This library contains functions,...
  12. Replies
    3
    Views
    902

    Re: The Restart and recovery API

    Also, i would like to suggest you to register the application for the recovery of data. The following are some codes that can be useful for you :

    private void RegisterForRecovery ()
    {
    recovery...
  13. Replies
    8
    Views
    797

    Re: How to use External declarations in XML?

    Instead of HTML, the Extensible Markup Language is a unique language for displaying documents. More or less, all those who surf the Net know or have heard, at least because of HTML is used to develop...
  14. Replies
    9
    Views
    2,607

    Re: shell script SSH not working

    I don't think that there should be some major mistakes. I would like to suggest you can put the full path of ssh and try spawn / usr / bin / ssh user @ IP instead of spawn ssh user @ IP. After that...
  15. Replies
    5
    Views
    1,647

    Re: Problem communication SOCKET TCP / IP in Java

    The keepalive packets regularly sends TCP / IP connection to maintain vacuum in vacuum. Also if you test between two machines and you got the problem when there is no NAT or firewall between these...
  16. Replies
    5
    Views
    1,647

    Re: Problem communication SOCKET TCP / IP in Java

    I think that you should have written an application to a client server-side. So it would be better if you provide that sample of coding, since, that is important to know. There are chances that...
  17. Replies
    5
    Views
    905

    Re: Checklist for the character encoding in HTML

    The purpose of this checklist is to examine the practical problems, the actual situations one or the other representation advantageous to appear in. Declare referred to as an indication of the...
  18. Replies
    5
    Views
    909

    Re: J2EE Authorization Model

    Rolen has a J2EE-based security model that is on festivals roles. :wink: I.e.: it can indeed ensure that you are 'head "is not whether it own department. Why is easy to answer - because it was so...
  19. Replies
    5
    Views
    606

    Re: Java Persistence with JDO

    The object / relational mapping, ie the relationship between Java entities and tables of database entries is performed by entity classes themselves, so files are not required XML descriptors....
  20. Replies
    5
    Views
    2,240

    Re: JSF example url? Parameter Help!!

    Because one would have to create a workaround NEN since in a Non-Faces-Request to a Faces request, he immediately spring to Render Response phase and render the page -> is articulated in such an...
  21. Replies
    5
    Views
    1,433

    Re: Session Sharing Java portlets / PHP

    Hi,
    such a similar problem I had last year. It was this question from PHP / Apache and Servlet / JBoss exchange data. Just like that at the session of the other access is not imho. Furthermore, it...
  22. Replies
    8
    Views
    2,233

    Re: Canoo WebTest vs Selenium in Java

    What I still do not know is that you should forgive with a different test parameters can So for example an Excel list of Params read and who can fill in your script. In addition, should the tool of a...
  23. Replies
    6
    Views
    1,099

    Re: Return data from J2EE web service

    Depends a lot on, have very little experience as myself but it is very tough to discover the problem without the sample of coding. So it is kind request that if you provide the code, it would be...
  24. Re: Entitymanager handling with JPA in Swing application

    The problem is that the Swing classes are not jumping beans. Since I am novice swing, I'm not even sure whether and how to configure Swing classes in Spring. In the Dao, which would of course be...
  25. Replies
    10
    Views
    1,416

    Re: Problem with connection via URLConnection

    You can also set the client side via system property keepalive time, like

    http.keepAlive = <boolean>
    default: true and the max connections:

    http.maxConnections = <int>
    default: 5 Server,...
  26. Replies
    5
    Views
    1,484

    Re: Denial of Service attacks and other in Java

    So I would not dare to make a safe application, but my infrastructure to make as a whole safer. If an application detects an attack (your case b), should be ensured that the software passes the...
  27. Replies
    5
    Views
    8,547

    Re: Eclipse: java.lang.UnsatisfiedLinkError

    In my eclipse projects I take in as sapjco3.jar Referenced Library. For doing that you will have to follow the steps :
    Right click on project, Build Path> Configure Build Path ... > Add External...
  28. Replies
    9
    Views
    1,424

    Re: Generics vs. Reflection in Java

    It is true that information on Generics can be found in the bytecode, but if I have not left my memory, only for the generic definitions. But not the specific types of instances of generic classes....
  29. Replies
    9
    Views
    1,424

    Re: Generics vs. Reflection in Java

    I think you should look initially make clear how the Java Generics work, the types of information is only available at compile time and not to maturity. Each generic type for example.

    class Foo...
  30. Replies
    9
    Views
    1,184

    Re: Error while sending messages with JMS

    Creating directory of the JNDI directory
    It uses the JNDI directory flat file of Sun Java System Message Queue. For this, we create the directory containing the file .bindings :

    mkdir -p...
  31. Replies
    7
    Views
    1,025

    Re: Information about the search application Lucene

    The "form object" determines how Lucene should use the information field:

    Indexed: when a field is indexed, then there may be searched. For the implementation of Lucene Akamai.com on the "Title"...
  32. Replies
    8
    Views
    867

    Re: Can WEBDEV easily used in web applications?

    WebDev is a complete AGL to design, develop and deploy web applications easily. WebDev excels particularly in the areas of Internet applications with high added value of integrating databases and...
  33. Re: Optimize the connection to the database in mysql

    At the outset I recommend you use a pool of database connections , not to make a connection every 6 seconds, but you've got reused in place (and still do not think desktop application you use more...
  34. Replies
    5
    Views
    1,629

    Re: ClassNotFoundException Error in Java

    ClassNotFoundException may be raised mainly by three methods:

    The method forName the Class class.
    The method of ClassLoader findSystemClass.
    The loadClass method in class ClassLoader.

    I...
  35. Replies
    4
    Views
    1,498

    Re: How to create an executable jar?

    Firstly, you should create a Manifest file. This file will contain the name of the class to run and archives to put in the CLASSPATH.


    Manifest - Version: 1 . 0 Created - By: 1 . 4 .1_01 (Sun...
  36. Re: Error "java.util.Arrays.mergeSort (Unknown Source)"

    Perhaps by implementing your own sort of non-recursive suddenly Collections.swap thou canst go out (maybe it already exists in Java). I think that you should know about the sorting of algorithm to...
  37. Replies
    5
    Views
    3,499

    Re: Scheduling in EJB3 Timer Service

    The code mentioned by the 'Mecurtis', is not that tough as it seems to be. I have tried to explain you some important things of it :

    Inject the TimerService on line 23: @ Resource TimerService...
  38. Replies
    6
    Views
    4,058

    Re: 24-Hour Clock Timer Task in Java

    I think that you are not using the calendar properly. I suggest that you should try the GregorianCalendar class which will solve your doubt. GregorianCalendar class using the Locale set somehow the...
  39. Replies
    9
    Views
    1,059

    Re: Information on Java Card

    The Java Card technology is used increasingly in the areas of telecommunications, corporate ID and Financial Services. The total number of Java-enabled smart cards now exceeds 3.5 billion units...
  40. Replies
    7
    Views
    2,871

    Re: Directory structure of Java web applications

    The directory "WEB-INF" under the "Document Root" is a special directory. It contains configuration files and the required libraries and Java classes to use. As this are all critical files, the...
  41. Replies
    7
    Views
    1,108

    Re: Introduction to JAVA language

    It is important to distinguish between the concepts of class and object. Class is an abstract model of an object type. Defines methods and attributes. This is an instance of a class, ie the...
  42. Re: Memory allocation limits for applications on x86 systems

    In the 64-bit computing environment is the virtual address space for 32-bit applications fully available to the user. Therefore, a -Bit application, the full 4 GB assign 32, minus the User address...
  43. Replies
    8
    Views
    892

    Re: Problem in installing StarOffice

    I think that you must check the system requirements before you install the StarOffice. The following are some system requirements of it:

    Linux Kernel version 2.4 or higher
    glibc2 version 2.3.2...
  44. Replies
    11
    Views
    1,927

    Re: How to install NetBeans 6.8?

    Netbeans uses a version of JDK by default. To change the JDK version you can access Tools -> Java Platforms. This place can be more than one version of JDK, and is configured by default. Platform...
  45. Replies
    7
    Views
    1,349

    Re: CharSequence interface problem in Java

    In Java, many times you observe that strings may not be changed. Operations that change is usually the sign or length of a string type, but instead returns a new string Object, in which the necessary...
  46. Replies
    4
    Views
    978

    Re: Problem in program of C++

    There is an initial error in the function stringTochar_array: allowance must provide a character more than the length of the string :

    char * s = new char [s-> Length + 1];
    Otherwise, the answer...
  47. Replies
    6
    Views
    2,412

    Re: How to replace HTML code using javascript

    Hello,
    If that label does not have content, you can easily do both with innerHTML, as replaceNode, and the particular label you want to replace you detect from the parentNode. (Since this is very...
  48. re: How to test applications compatible with Windows 7

    You can try Microsoft Application Verifier, to Deliver reliable Windows applications:


    Test applications and unmanaged (native) code with Application Verifier and "under the debugger with...
  49. Replies
    5
    Views
    2,484

    Re: Error code 0x7c91b21a

    Check you have the correct time and date and time zone:

    1. Double click the clock in the bottom right hand corner.
    2. Check you have the correct time and date.
    3. Click the Time Zone Tab. ...
  50. Re: What are the specifications of GeForce GTX470 and GTX480

    The GTX480 performs generally better than its direct competitor AMD, the ATI Radeon HD 5870 in late September last year, but the difference does not seem sufficient to justify the price difference....
Results 1 to 50 of 227
Page 1 of 5 1 2 3 4
Page generated in 1,713,455,286.23865 seconds with 33 queries