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 wOOdy-Soft 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: *

  • Users: rdg2cig
  • Content: Threads
  • Order by date
  1. rdg2cig

    Print Monitor Crashes when Classic starts up from OS X

    I have a G4 iMac running OS X 10.1.4 and a Lexmark X83 printer/copier/scanner. The printer works fine when used from an OS X application and will also work if I boot up in OS 9.2 but will not work when I use a Classic app after booting up in OS X. When the Classic mode finishes launching, I...
  2. rdg2cig

    Using JTextArea as JTable Editor

    I am trying to implement a JTable that uses a JTextArea for the Rendering and Editing component for a column. The rendering seems to work but the editor does not save the changes made. I suspect I am not handling events properly. When I click on a cell in the column using the JTextArea editor...
  3. rdg2cig

    Using a Dialog to report series of status messages?

    I would like to display the path of execution my MFC application is taking through a decision tree that performs calculations. Each time a branch of the decision tree is encountered, I would like to append another message (a simple CString) to a dialog box that would appear upon initial entry...
  4. rdg2cig

    What value is returned by empty JTextField?

    I would like check to see if the user entered any value in a JTextField before clicking a JButton in order determine the branch to take in a conditional statement. In the JButton actionPerformed() method I have a statement such as: if(JTextField1.getText() == null){ ... do something ... }...
  5. rdg2cig

    prevent caching of applets with IE 5.0

    I would like to be able to prevent caching of my JApplet used in a html page when viewed using IE 5.0 (and using Sun Java 1.3 plug-in). I have found that while developing the applet, when I recompile and try to view again using the same browser session, the applet changes do not appear. I have...
  6. rdg2cig

    ODBC MFC CRecordset error at runtime

    I am trying to add access to a database (currently extracted into MS Access 97 during development) into an existing MFC application that did not originally include database support. I have registered the database as "RAMS" through the ODBC utility on the Windows Control Pnnel. I used...
  7. rdg2cig

    Changing default color for all control buttons on a dialog

    I changed the dialog box default color in an application I am developing but the buttons are still the default grey.&nbsp;&nbsp;I used the following code in the CMyApp::InitInstance()of the MyApp.cpp file.<br><br>// set the background color for all dialogs to slate blue // with black text<br>...
  8. rdg2cig

    Property Sheets: accessing data in a property page from another page

    I am using a property sheet with six property pages in an application. This is all working nicely. However, I would like to set some controls on one property page based on values entered via a control (or controls) located on a seperate property page. Both property pages are members of the...
  9. rdg2cig

    Enabling/Disabling a TextBox in a Dialog

    I would like a textbox in a dialog to be controlled by the status of a radio button on the same dialog. In other words, if the button is clicked, the textbox is active and text may be entered but if the button is not clicked, the text box is inactive and the user can not enter text. How is...
  10. rdg2cig

    Converting int to CString

    I would like to convert a variable declared as an int to a CString for printing to the screen using a device context. In the code below, f, i, and s are all CStrings and m_windSpan is an int. I would like to print the int to the screen preceeded by the text. Casting the int to a CString does...
  11. rdg2cig

    Converting JTextField input to integer type

    I am creating a small application that utilizes the jdbc:odbc bridge to retrieve information from a database. I am new to Java and have mostly used C++ for text-based programs. Therefore, using the GUI classes is new to me. I created a JFrame that includes several JTextFields to receive input...

Part and Inventory Search

Back
Top