Search:

Type: Posts; User: Daren

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    4
    Views
    880

    Re: need help with this C# .net app

    http://img37.imageshack.us/img37/6701/viewl.jpg

    this is what i get any ideas on how to fix this?
  2. Replies
    4
    Views
    880

    Re: need help with this C# .net app

    i get this showing up -- the list box is empty as you can see and the test lable prints out crap

    http://img37.imageshack.us/img37/6701/viewl.jpg
  3. Replies
    4
    Views
    880

    need help with this C# .net app

    int itemCount;
    public struct addressBook
    {
    public string lastName;
    public string firstName;
    public string street;
    public string...
  4. Replies
    6
    Views
    1,794

    Re: Java example for static members

    I'll explain it in easy terms-- looking at code isn't always the best.

    static means that it is represented as the same variable through out all the classes. Like if you wanted a tax rate of...
  5. Thread: C# array help

    by Daren
    Replies
    5
    Views
    1,132

    Re: C# array help

    for (int i = 0; i < origArray.Length; i++)//take the array and cycle through the elements
    {

    space = origArray[i] +"\n" + space ;//reverse the array
    ...
  6. Thread: C# array help

    by Daren
    Replies
    5
    Views
    1,132

    Re: C# array help

    unfortunately I am not writing to a console but to a label-- and when I do this it only prints the last element. I need it to print out all the elements.
  7. Thread: C# array help

    by Daren
    Replies
    5
    Views
    1,132

    C# array help

    string[] origArray = new string[] { "b", "c", "d" , "e"};

    for (int i = 0; i < origArray.Length; i++)
    {

    lblOrig.Text = origArray[i];
    ...
  8. Re: Explain XML Document Object Model and XML Related Technologies?

    considering XML is patented and Microsoft just lost a huge lawsuit to that-- I say be wary on how you use XML.
  9. Thread: What is WPF?

    by Daren
    Replies
    4
    Views
    778

    Re: What is WPF?

    WPF is a portion of Visual Studio.NET that embodies VB and expands on it. Vista 64 is not compatible with it. Vista 32 is. I have used WPF in the past and it is kinda a pain in the ass. Basically...
  10. Replies
    6
    Views
    653

    Re: Should I go with JAVA for my project

    it can also bite you in the butt. Static in java can give tons of headaches if not implemented correctly.
  11. Replies
    2
    Views
    788

    Re: threads concept in java

    I have no idea what your asking
  12. Replies
    5
    Views
    1,125

    Re: What is a linked list?

    Since most people tend to always give absolute definitions I'll try to explain it in layman's terms.
    a linked list is a list of items that in some way relate to each other to create a kind of data...
  13. Thread: problem on if

    by Daren
    Replies
    2
    Views
    368

    Re: problem on if

    what error is it giving you or what is it doing that you don't understand?
  14. Replies
    4
    Views
    6,040

    Re: Restart main in java

    basically he is saying that your main would be like something like this:

    public void main(String[] args)
    {
    run();
    }

    run()
    {
    bunch of code
  15. Replies
    5
    Views
    663

    Re: Creating object and server prices in JAVA

    your question isn't so easy to understand....

    basically if I understand it correctly you need 2 classes

    class 1 is an object class
    class 2 is your main class

    class 1 contains data for the...
  16. Replies
    1
    Views
    2,077

    Re: C# in Visual Studio 2008 masked text box

    i found it c# vs2008 has its own masked text box tool --- unlike vb2008 wheer you can just adjust the textbox to a masked setting, C# has its own text box called masked text box.
  17. Replies
    1
    Views
    2,077

    C# in Visual Studio 2008 masked text box

    how do I find the control for a masked text box in C# in VS2008? I can easily find it in VB2008 but in c#2008 I can't seem to locate the control. Any pointers would be welcomed.

    thanx
    daren
  18. Replies
    3
    Views
    831

    Re: Problem with my java method

    why did you put public static string this line

    public static String getMagasinProche(double lat,double lon){


    the static is stating that it will be a definite double double and once you go...
  19. Replies
    4
    Views
    1,160

    Re: Running simple java program.....

    you should download something like jgrasp to help you since you are starting JAVA.
  20. Replies
    3
    Views
    831

    re: Problem with my java method

    what you typed is hard to understand-- even your question is hard to understand--- put code tags on your code to make it easier to read and tell us exactly what part of the program isn't working. I...
  21. Replies
    4
    Views
    753

    Re: use of methods and constructor

    here is both a constructor and a method

    class dog{

    public dog{} //constructor makes an object of the class dog

    public void setFeatures{
    string face;
    string color;
    int legs;
  22. Replies
    4
    Views
    1,710

    Re: Java bans Global Variables

    in JAVA you can make something global by the following ways

    declare the variable as a public variable, a static variable, or a private variable.

    you would declare it like so

    class thisOne{...
  23. Re: How big is an Object in Java? Why Java neglects sizeof?

    instead of size of() JAVA uses .length() as follows:

    int[] cars = {"ford", "chevy", "honda"};


    for(int j = 0; j <= cars.length; j++)
    System.out.print(cars);


    that will take the array...
  24. Replies
    3
    Views
    1,560

    Re: java.lang.NoClassDefFoundError: Classname

    1st off dl Jgrasp or some sort of of JE---
    ***reason is that the program will tell you what line of code is bad


    I believe the error your getting is because the Main portion of your class is not...
  25. Replies
    4
    Views
    1,040

    Re: JAVA WYSIWYG Editor information

    download JGrasp--- pretty easy to use but it it all hard coding... The thing about JAVA, WYSIWYG isn't the best for it. JAVA is a simpler form of c# and thus just writing the code will make it...
  26. Thread: Java anyone?

    by Daren
    Replies
    2
    Views
    503

    Re: Java anyone?

    use this one it's mistake free


    import java.util.Scanner;

    public class TrianglesProject2{
    public static void main(String [] args){
    System.out.println("Welcome to David's Triangle Solving...
  27. Replies
    6
    Views
    1,873

    Re: How to close application in VB

    if your trying to close the program it would be me.close()

    but I can't really understand what your asking for.
  28. Replies
    1
    Views
    739

    Re: JAVA incomaptible types

    i figured it out ty
  29. Replies
    1
    Views
    739

    JAVA incomaptible types

    I don't understand why I'm getting this error. All I did was copy a working method and changed the variables. I also created a new edge class and a new vert class and changed all their variables.
    ...
  30. Thread: JAVA binary tree

    by Daren
    Replies
    4
    Views
    2,605

    Re: JAVA binary tree

    while(true) {
    String str = JOptionPane.showInputDialog(null, msg, "", 1);
    int selection = Integer.parseInt(str);

    switch(selection) {
    case 1:
    displayAll();
    break;
    case 2:
    insert();
  31. Thread: JAVA binary tree

    by Daren
    Replies
    4
    Views
    2,605

    Re: JAVA binary tree

    When I call the insert method it errors. Says no such method
  32. Thread: JAVA binary tree

    by Daren
    Replies
    4
    Views
    2,605

    JAVA binary tree

    Hi,

    Does anyone know how to make a binary tree accept user input and then place the input into a binary tree? I need it to be like add a club member and the user inputs the name and ID.

    ...
  33. Replies
    1
    Views
    843

    JAVA -- updated code

    i get cant find symbol errors on print(), meesage dialog, length(), and is empty

    any help would be appriciated

    Daren


    import java.io.*;
    import javax.swing.JOptionPane;
    import java.util.*;
  34. Thread: JAVA how would I

    by Daren
    Replies
    1
    Views
    545

    JAVA how would I

    can anyone tell me what an algorithm for the following situation would look like?

    i need to make a program in which the user enters a city name and x and y coordinates. depending on how many...
  35. Replies
    1
    Views
    1,070

    JAVA need some help

    i have to make a recursion program and this is what i have. Any ideas on how to make it work would be appreciated.

    thanx

    Daren


    import java.io.*;
    import javax.swing.JOptionPane;
    import...
  36. Replies
    2
    Views
    882

    Re: Java math question

    ty for the reply but i figured it out.

    public static void exponential()
    {
    //declare variables
    double num;
    double cons = 2;

    System.out.println("The powers using a for statement are: ");...
  37. Replies
    5
    Views
    3,820

    Re: Error in Java file: Cannot find symbol

    you are missing a } after
    System.out.println( "End of method doesNotThrowException" );
    }
  38. Replies
    3
    Views
    1,135

    Re: Java 11 cannot find symbol

    post the code so we can see it
  39. Replies
    2
    Views
    882

    Java math question

    i need to make a method in which a for loop is used to calculate 2 exponent n. Does anyone know the math formula for mutiplying a number by an inferred exponent?
    i have this
    public static void...
  40. Replies
    1
    Views
    872

    Visual Studio.net

    I'm using Vista(x86) and I have to add a data source to an emulator (cell Phone)
    It shows connected 100% but the tables dont show up on the data source. Also the data grid doesnt have the smart tab...
  41. Replies
    4
    Views
    1,587

    Re: How do I override my CSS link colors?

    did you try right click/properties/background or even font color?
  42. Thread: applet in jsp?

    by Daren
    Replies
    3
    Views
    1,528

    Re: applet in jsp?

    you have to declare a html tag in its own file. Let's say you make your applet and want to see how it works. You then have to make a html file that calls the applet to work.
  43. Replies
    4
    Views
    1,379

    Re: How to initialize VB Array

    show us the code so we can see it more clearly
  44. Replies
    0
    Views
    619

    Visual studio web.net

    is there any reason why this wont transfer the information from control 2 to control 3?

    Thanx in advance

    Daren
  45. Replies
    2
    Views
    889

    sql to work in text box

    OK this is taking place in VB.net 2008. I have created datagrids and a search text box where a user will enter a specific type of book for example if they enter business in the text box it will...
  46. Replies
    6
    Views
    5,709

    Re: How to convert vb .text to number format

    View the above samples but please dont just out right copy it unless it was a share ware thingy.
  47. Replies
    6
    Views
    5,709

    Re: How to convert vb .text to number format

    Private Function NumberToString(ByVal num As Double) As _
    String

    ' Remove any fractional part.
    num = Int(num)

    ' If the number is 0, return zero.
    ...
  48. Replies
    6
    Views
    5,709

    Re: How to convert vb .text to number format

    ' Convert a number between 0 and 999 into words.
    Private Function numbers(ByVal num As Integer) As String
    Static onetonineteen() As String = {"Zero", "One", "Two", "Three", "Four",...
  49. Replies
    0
    Views
    758

    need some fast VB.net help

    I cant get the datagrid to populate.
    Any idea why it wouldnt populate? I get an error Datamember property 'getemployees' is not found on the data source.
    I's using a stored procedure for this.

    ...
  50. Thread: VB question

    by Daren
    Replies
    1
    Views
    555

    Re: VB question

    I fixed it ty though

    It is an error in VB2008 that doesnt recognize databases if you are using vista 64
Results 1 to 50 of 96
Page 1 of 2 1 2
Page generated in 1,713,258,734.01756 seconds with 21 queries