CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: gammaman

Page 1 of 7 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    0
    Views
    978

    VBA Access Create Calculated Field

    I am trying to create a calculated field in access using VBA. I have other code working for regular field types (Text,Number,etc). When it comes to the calculated field, the field is not added to...
  2. Replies
    1
    Views
    1,992

    Help with VBA Excel Script

    I am trying to write a VB Script to do a few things in Excel. I am trying to filter a table based on certain criteria. It is working if I directly specify the table range (where the data is). I...
  3. Replies
    1
    Views
    706

    PHP Search array for value.

    I have this function I am using which returns all the meta-data from a given website. I am trying to come up with something so that I can search the array that is returned to see if it contains a...
  4. Replies
    3
    Views
    2,241

    Re: window closed event not firing.

    No. I have not. Here let me break out the pieces that are important so it is easier to understand.




    public class GameDetailsDialog extends JFrame{
    ...
    protected JFrame...
  5. Replies
    3
    Views
    2,241

    window closed event not firing.

    I have a class which extends JFrame. In the class there is a method buildGui(). At the bottom of that method I attempt to add a window listener and window closed event. In the event I do a...
  6. Replies
    2
    Views
    2,225

    Re: JComboBox get current value

    Yes, you are right, thanks!.
  7. Replies
    2
    Views
    2,225

    JComboBox get current value

    I am trying to get the "Current" value from a combo box. With getSelected Value you actually have to select a value for it to trigger. I have a gui with several tabs. The tabs share a common combo...
  8. Replies
    1
    Views
    1,146

    Re: Help adding ImageIcon to JList.

    Sorry, never mind. Caught my mistake. The getPanel() method should have been this.




    public ArrayList<Object>getPanel(){

    ArrayList<Object> obj = new ArrayList<Object>();

    Object...
  9. Replies
    1
    Views
    1,146

    Help adding ImageIcon to JList.

    I have a jlist that uses an ImageListCellRenderer. I create an icon and pass it an image. Then I attempt to do setListData. Everything compiles fine but no image is displayed.


    Here is where I...
  10. Re: Error: java.lang.NoClassDefFoundError: com/mysql/jdbc/DocsConnectionPropsHelper

    java.lang.NoClassDefFoundError: com/mysql/jdbc/DocsConnectionPropsHelper
    Caused by: java.lang.ClassNotFoundException: com.mysql.jdbc.DocsConnectionPropsHelper
    at...
  11. Re: Error: java.lang.NoClassDefFoundError: com/mysql/jdbc/DocsConnectionPropsHelper

    Yes I have refreshed and rebuilt the project and I am still getting the error.
  12. Error: java.lang.NoClassDefFoundError: com/mysql/jdbc/DocsConnectionPropsHelper

    I am receiving an error: java.lang.NoClassDefFoundError: com/mysql/jdbc/DocsConnectionPropsHelper when trying to connect to the database. The thing is, it is not even an mysql database, it is an...
  13. Help using ADO to extract data from Oracle DB and store results in Array.

    Hello again,

    I am trying to use ADO to connect to an Oracle DB, run a query, and then take the resultset and write the fields out to an array. This array will then be used to compare another...
  14. Creating an RPG Style Scrolling Text Effect.

    Hello all,

    I am currently working on building a game using the Slick2D engine. I am looking to make an RPG. The engine does not have what I am looking for as far as displaying text goes. I am...
  15. Replies
    6
    Views
    22,471

    Re: Excel Macro to Auto Click OK on MsgBox

    We are not using excel to open DB. We have docs being sent to us from other companies. We are using Oracle Document Capture to listen for them. Oracle document capture, upon receiving these docs,...
  16. Replies
    6
    Views
    22,471

    Re: Excel Macro to Auto Click OK on MsgBox

    First of all Thank You. Maybe I am confused but all I am looking to do have that message box automatically click OK so that the files can be committed into Oracle Document Capture. As of now all of...
  17. Replies
    6
    Views
    22,471

    Excel Macro to Auto Click OK on MsgBox

    I am trying to create a macro that will automatically click OK on a message box that pops up on excel files. This message says "Document 'XYZ' should be opened in read-only unless you need to save...
  18. Replies
    1
    Views
    2,006

    How to load maya scene

    Can someone just give me a basic idea how to load a maya scene in C++. I just need a basic idea as I don't even have the maya software yet. I just want to be reassured that I can create a 3D scene...
  19. Thread: good c++ book

    by gammaman
    Replies
    3
    Views
    1,353

    Re: good c++ book

    Well the main reason why I hate their series is because every book, no matter what the language uses that stupid grade book example. All the authors do is expand upon this same example as they...
  20. Thread: good c++ book

    by gammaman
    Replies
    3
    Views
    1,353

    good c++ book

    I am looking for a good C++ book to "reteach and refresh" my skills. I have been programming for many years but have not touched C++ in quite some time, probably close to 5 years. The last time I...
  21. Replies
    0
    Views
    694

    Parameter Passing Methods

    2 Quick questions, I think?

    Is pass by reference always going to give you the same result as pass by name?

    Is pass by result always the same as passing by value-result?
  22. Replies
    0
    Views
    1,214

    finding all of the candidate keys.

    Would someone be so kind to look an see if what I have done below is correct. I would really appriciate it.

    Find all of the candidate keys

    R(ABCDEF)
    F={AB > C, C > A, BC > D, ACD > B, D > EF,...
  23. Replies
    7
    Views
    4,038

    Re: recursive decent parser

    Well maybe I should also mention that our prof wants us to have the user of the program be able to enter a string such as 2^2^3,15,2^2. Notice the comma seperated list. This string is what gets...
  24. Replies
    7
    Views
    4,038

    Re: recursive decent parser

    I know but our prof wants us to implement the RDP just as I have it in the pseudocode. The class is called Theoretical Concepts of Programming Languages. We are studying lexical and syntactical...
  25. Replies
    7
    Views
    4,038

    Re: recursive decent parser

    I wrote some pseudocode which I think will do the trick. I just need some help converting this into Java. I must use Java for this project. If it were me I would have done this in Perl or PHP,...
Results 1 to 25 of 159
Page 1 of 7 1 2 3 4





Click Here to Expand Forum to Full Width

Featured