Make IDE independent code

Hi
Can anyone tell me how I should use JBuilder to design my forms and at the same time make the whole code IDE independent (because i would use other editors or even a notepad to do the programming)
Thanks this would be a great help
Can someone atleast provide me with a link where i can discuss about JBuilder. I havent found any working forums which is dedicated to it (the borland's one asks to register the product).
Thanks in advance

Even JBuilder generates a class that will instantiate the components, then you cna change this class.
But keep in mind that if you try to modify it in JBuilder after you have done somehing on this code, you can get in a sitation where JBuilder's form builder will fail to open it. But you will always be able to edit it as an ordinary class.
In our company we prefer to code GUI without using form builders.
Mike

Similar Messages

  • I have 2 new iPhone 4s. Messages from other iPhone users appear on both of my new phones. I want these seperate. How do I make these independent of one another?

    I bought my daughters new iPhones (4s) for Christmas.  They love them except that when another iPhone user text one daughter, the other daughter gets the messages and same for the other daughter's text.  How do I make these independent of one another without putting my family on separate ITunes accounts?

    When you were setting the phones up you should have been asked if you wanted to use the phone number or an email address for FaceTime/messaging. My guess is you used the same email for both phones. Just go in and change it. That or you have the same iCloud id on both phones, I'm not using the cloud so I can't help you there.

  • Pages: Is there a way to make lines independent, like a real word processor

    There are so many things that infuriate me about Pages. Save As.. missing, autosave, etc which are NOT like 99% of other apps on the Mac.
    Specifially (today):
    I have a letter in Pages. It’s a standard business letter you have see 1m times.
    After the first line of the address, at the top of the letter, I insert a carriage return and BINGO, the tabs in the middle of the letter are suddenly all messed up.
    Grrrrrr.
    Is there a way to make lines independent in Pages? I have this crazy belief that letters are not Web Pages, not HTML, and that an extra line somewhere should not reformat following lines way down the page.
    Alternately, is there some 3rd party word processor that works like the old Apple Works, with graphics and tables you can recommend?
    Thanks

    William Donelson wrote:
    There are so many things that infuriate me about Pages. Save As.. missing, autosave, etc which are NOT like 99% of other apps on the Mac.
    Save As is still there, hold down the option key as you go to the File menu. This is not Pages, it is Mountain Lion.
    Specifially (today):
    I have a letter in Pages. It’s a standard business letter you have see 1m times.
    After the first line of the address, at the top of the letter, I insert a carriage return and BINGO, the tabs in the middle of the letter are suddenly all messed up.
    Grrrrrr.
    Then you are doing something wrong, probably pounding away at spaces, tabs and returns to position things. Turn on invisibles to see what is going on:
    Menu > View > Show Invisibles
    If you have strings of tabs, spaces and returns that is the problem.
    Is there a way to make lines independent in Pages?
    Yes, hit the return key. Like every other Word Processing program.
    I have this crazy belief that letters are not Web Pages, not HTML, and that an extra line somewhere should not reformat following lines way down the page.
    Alternately, is there some 3rd party word processor that works like the old Apple Works, with graphics and tables you can recommend?
    Time to learn Pages. AppleWorks is dead. Stop pining for it. This is a case of user error and instead of blaming Pages, it would pay to find out what you have done and stop doing that.
    Pages, except for the fancy DTP features, tables and charts works like most other Word Processing apps. Just a case of learning new tricks. My guess is you have other stuff going on.

  • Translation problem: No language independent code..

    Hi guys!
    I'm currently customizing an existing system with 2 different languages(English and French)
    So far so good, but I get the following error message when I try to create a new Appointment or Task:
    "No language independent code exists for the value 'En cours' and type 'EVENT_STATUS' with language 'ENG' in table 'S_LST_OF_VAL'. (SBL-DAT-00510)"
    The field 'Status' is a read-only picklist with a default value 'En cours' in the french section of the system. I've translated the value of 'En cours' to 'On Going' for the english section, but I still receive the same error message..
    Any tips how to solve this problem?
    Thanks!

    I would recommend that you submit a service request to CRM On Demand customer care in reference to this issue.

  • Error regarding share relocation object or Position Independent Code.

    Problem related to Shared Object relocation or Position Independent code.
    For reference:
    Specification for -b option with ld (link editor/Runtime linker)
    ========================================================================
    In dynamic mode only, does no special processing for relocations that reference symbols in
    shared objects. Without the -b option, the link-editor creates special position-independent
    relocations for references to functions defined in shared objects. In addition, the
    link-editor arranges for data objects that are defined in shared objects to be copied into the
    memory image of an executable at runtime.
    The -b option is intended for specialized dynamic objects and is not recommended for
    general use. Its use suppresses all specialized processing required to insure an object's
    shareability, and can even prevent the relocation of 64-bit executables.
    ========================================================================
    I want -b option, and also I want working application.
    Please help.
    # ls -lrt
    total 6
    -rw-rw-r-- 1 sdk_25 sdk_grp 102 Jan 12 14:01 main.c
    -rw-rw-r-- 1 sdk_25 sdk_grp 24 Jan 12 14:01 aux.h
    -rw-rw-r-- 1 sdk_25 sdk_grp 60 Jan 12 14:02 aux.c
    # cat main.c
    #include <stdio.h>
    #include "aux.h"
    void main() {
    printf("Hello World\n");
    remote_display();
    # cat aux.h
    void remote_display();
    # cat aux.c
    void remote_display() {
    printf("Remote Hello World\n");
    # cc -o libaux_64.so -G -b -xarch=v9 aux.c
    cc: Warning: option -b passed to ld
    # cc -o main_64 -laux_64 -xarch=v9 -b main.c
    cc: Warning: option -b passed to ld
    # ./main_64
    ld.so.1: main_64: fatal: relocation error: R_SPARC_WDISP30: file main_64: symbol remote_display: value 0xffffffff9fc7fe9d does not fit Killed
    # cc -o libaux_64.so -G -xarch=v9 aux.c
    # cc -o main_64 -laux_64 -xarch=v9 main.c
    # ./main_64
    Hello World
    Remote Hello World
    Please tell how may I prepare a working shared object along with the program (with -b option).
    Thank you.

    The problem seems to be due to the use of -b. The manual warns you that it can prevent proper relocation in a shared library.
    You don't say what compiler you are using, so I tried your example without -b, using Sun Studio 12, with -m64 instead of the deprecated -xarch=v9: (I also added the missing #include <stdio.h> to aux.c)
    % cc -o libaux_64.so -G -m64 aux.c -Kpic
    % cc  -o main_64 -L . -laux_64 -m64  main.c -R .
    % ./main_64
    Hello World
    Remote Hello World

  • How to make the same code that works only?

    how to make the same code that works only?
    code:
    Form2.Close = Me.Enabled = true
    effect such as this code

    I have this code:
    Public Class Form1
    Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
    Form2.Show()
    Me.Enabled = False
    End Sub
    Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
    Form3.Show()
    Me.Enabled = False
    End Sub
    End Class
    he wants to after closing Form2 and Form3 unblocked the whole form1
    it means that:
    when I click the button, displays the himself form2 and blocks himself form1" and after closing Form2 , unlocks himself Form1"
    the same with Form3

  • How to establish code standards to make the abap code more readability

    Every programmer have their habit to code, but this lead a problem , it is difficult to read other people's code, especially the complex logic.
    So how to establish code standards to make the abap code more readability?
    I came up with this:
    1.Unify the naming rule.
    2.Reduce the nest of 'if' statement. (better in less than 4 if statement in one block )
    3.Use more Perform to replace the big code block.
    Is there any other standards to make our abap code more readability ?  (if we establish the standards, in sap is there any tool to help us to follow the rule we set ?)

    There are a number of things you could do. Some of which are:
    I would recommend creating your own in-house document on Coding standards, some of which you can control with the code inspector.
    It is also possible to set up the transport request in such a way that objects that do not pass the SCI test are not allowed to be released.
    I would also assign a senior developer to act as quality control for all developments. You can have a rotation scenario where this work can be divided by the number of senior developers you have.

  • How to make a t-code to access maintain viewer(SM30)

    I want to make a t-code ZOB52 like OB52 can maintain V_T001B?But in PRD system ,it can not work,who can tell me how to make ZOB52 like OB52.

    Hi
    copy the program of OB52 into a new program and use transacction Zob52 and assign it to the new program that you have copied .
    In the new program , you can use the authorization that you want.
    in my case ,
    I have done it with a new program with the selection screen parameters of ob52 and used BDC for updating OB52 . I have also put the authorization for users who can use this ZOB52.
    regards,
    Ramya

  • HT1320 my i-pod has a code, and cant find the code.Can I Make a new code?

    LOST MY CODE FROM I-POD, HOW CAN I MAKE A NEW CODE?

    Connect it to the computer you sync with and Restore it in iTunes.

  • Is it possible to make wrap up codes mandatory?

    All,
    Is it possible to make wrap up codes mandatory as reason codes? What I mean is, when users have to change their status to 'Not Ready' they HAVE to set a reason code for...now, is it possible to do the same with wrap up codes?
    THanks,
    Thiago

    Hi Thiago,
    Assigning Wrap-up Data Descriptions
    Wrap-up data descriptions can be assigned at the global and at the work flow group level. Global wrap-up data descriptions are available to all agents. Work flow group level wrap-up data descriptions are available only to the agents in that specific work flow group.
    Please refer the section "Wrap-up Data" from page 54 onwards in the below link,
    http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/crs/express_9_0/user/guide/cda90ccxug.pdf
    Hope this helps.
    Anand
    Please rate helpful posts !!

  • Make a qr code reader

    I want to make a qr code reader app does anyone have a tutorial on how to make one?

    You need to tell a bit more.
    What expertise do you have? For what platform do you want to write the app? (As if we can't guess -- * sigh *) At what point do you need help to git started? Can you actually program anything at all to begin with?
    Source code for the actual QR code reading part that all of the other available QR code reader apps use is freely available, and I'm not even bothering to type it into Google just to give you the url.

  • No language independent code exists......

    No language independent code exists for value '108010' and type 'HTSC_CUST_STATUS' with language 'ENU' in table 'S_LST_OF_VAL'.But the data exists in S_LST_OF_VAL and LIC exists for this value and the lanuage is ENU and type is HTSC_CUST_STATUS. The Problem happens when executing task UI but behaves normal when invoking NewRecord Method in List Applet,provided Predefault value or Post default value is set as "Expr: "LookupValue(""HTSC_CUST_STATUS"",""118010"")""Anybody knows why?Thanks.

    Hi,
    Confirm whether the "Display Value" for the LOV is "108010" or the Language Independent Code (LIC). Check at the Database level what value has been stored for the Value and LIC Column. This could also be a problem if there is any discrepancy on this.
    Regards,
    Joseph

  • How can I make my source code with jar file?

    I use JDK1.6.0. I can open a class file from rt.jar and get its source code. Does this because open source JDK? I wander how I can make my jar file with source code.

    CeciNEstPasUnProgrammeur wrote:
    youhaodiyi wrote:
    But why I can read source code from rt.jar? I found there are only class files in it.I say it's highly likely that you can't and your IDE's settings rather automatically refer to the src.zip file in the JDK's directory.I see. That's true. I use eclipse as the source code reader. It may refer to the source code zip file automatically.
    Thanks all.

  • Help.  Does use of .txt file make sense or code directly into an ArrayList

    I am writing my first program and I want to put a series of information in various .txt files. This is because I will have a lot of different objects that I will create that will needed to be iterated over (most of the objects are similar in many ways). It seemed to me that a .txt file would be better than writing the items directly in an arraylist (if you know what i mean). What do you think?
    There will be 7 different objects that will be iterated over (and there will be 12 other objects doing other things as well, they will not be in .txt format), and I thought instead of having to maintain it through the actual code, I would just have .txt files that I create in notepad or something so that when I need to make changes to one of the 7 objects I only have to get the .txt file instead of having to wade through the code to find that object.
    Does this make sense?
    It seems that I will now have to do a lot of I / O to make it work, so now I am thinking maybe it is better to simply use the arrylist. Is there a benefit of one over the other in this circumstance?
    Also one of the objects has jpeg files that will need to be iterated over. Actually for these I will put them in an array list, because I can't seem to figure out yet how to get an image and the information about the image to display within I/O (like CD covers and their titles).
    Thank you for any help and suggestions I feel a little overwhelmed, but hopeful, with you kind folks.
    Peace
    NB I know that I am not using the correct terminology, but I hope that you can understand what I mean.
    Message was edited by:
    peacerosetx

    I am writing my first program and I want to put a
    series of information in various .txt files. Thisis
    because I will have a lot of different objects thatI
    will create that will needed to be iterated over
    (most of the objects are similar in many ways). It
    seemed to me that a .txt file would be better than
    writing the items directly in an arraylist (if you
    know what i mean). What do you think? I think I do not know what you mean. I also think
    that ArrayLists and files shouldn't replace eachI am going to use an ArrayList. Merci
    other.
    There will be 7 different objects that will be
    iterated over (and there will be 12 other objects
    doing other things as well, they will not be in.txt
    format),Seven objects? Twelve objects? Huh? Why not use
    arrays? And how do you get an object into a text
    file?
    and I thought instead of having to maintain
    it through the actual code, I would just have .txt
    files that I create in notepad or something sothat
    when I need to make changes to one of the 7 objectsI
    only have to get the .txt file instead of havingto
    wade through the code to find that object.
    Does this make sense? Your description? Not to me.
    It seems that I will now have to do a lot of I / Oto
    make it work, so now I am thinking maybe it isbetter
    to simply use the arrylist. Is there a benefit of
    one over the other in this circumstance? Uh, ArrayList is way faster and much easier
    modifyable.
    Also one of the objects has jpeg files that willneed
    to be iterated over. Actually for these I will put
    them in an array list, because I can't seem tofigure
    out yet how to get an image and the informationabout
    the image to display within I/O (like CD coversand
    their titles). "Display within I/O"? This makes no sense.
    NB I know that I am not using the correct
    terminology, but I hope that you can understandwhat
    I mean.If you're not using the correct terminology, there's
    no chance for us to understand you. If you say
    "objects" but mean "classes", then say classes.

  • I have 2 iPads with the same log in and password details. How do I make them independent of each other so that contacts and calendar entries are not duplicated

    I have 2 iPads. When gifting one to my wife I did not change the log in and security details. Consequently any contacts and calendar entries are duplicated. How do I make the iPads independent so that the foregoing duplications are eliminated?
    Thank you

    The logins on the iPads, for example the iTunes store can be the same if you share an iTunes account, this will not effect the Contacts/Calendars unless you are using iCloud to sync Calendar/Contacts in which case just setup a new iCloud account for your Wife and change the iCloud settings on her iPad to this new account.
    Unfortunately the contacts if syncing with your computer will be the same as it can only sync from the given contacts on your computer.
    You can use a different login to the computer for your wife and she can then have her own contacts.
    If your Contacts application on your compuer has Categories/Grouping you can tell iTunes to sync certain Categories/Groups to each iPad, that way splitting up the contacts on your computer for each iPad.
    The same is true for the Calendar if you only have the one calendar it will sync it for both of you, the iPad settings in iTunes has the option to pick a Calendar if you have more then one.
    One option is to use an online calendar such as Google Calendar and sync to and from it with your iPad that way the Calendars would be individual.

Maybe you are looking for