Results 1 to 8 of 8

Thread: Which Programming features from other Languages do you miss most?

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Jun 2006
    Location
    Best Place on Earth
    Posts
    363

    Question Which Programming features from other Languages do you miss most?

    One feature that I miss was being able to declare variables and types in between procedures in Modula-2

    It meant I could declare a number of records and have the procedures to Blank them together.

    If I try this in VBA then I get a Compile Error.

    VB Code:
    1. Public Type TDates
    2.     EffectiveDate as Date
    3.     RevisionDate as Date
    4. End Type
    5.  
    6. Sub BlankTDates(ByRef TOD as TDates)
    7.     TOD.EffectiveDate = #1/1/1900#
    8.     TOD.RevisionDate = #1/1/1900#
    9. End Sub
    10.  
    11. Public Type TPerson
    12.     Name as string
    13.     BirthDay as date
    14.     Phone as String
    15. End Type
    16.  
    17. Sub BlankTPerson (ByRef TP as TPerson)
    18.     TP.Name = ""
    19.     TP.BirthDay = #1/1/1900#
    20.     TP.Phone = ""
    21. End Sub

    So what feature do you miss most, and what language is it from.

    Edit : Almost forgot , please give a simple example.
    Signature Under Construction

  2. #2
    Hyperactive Member ..:RUDI:..'s Avatar
    Join Date
    Aug 2005
    Location
    Yorkshire, England! c0d: Da Vinci
    Posts
    344

    Re: Which Programming features from other Languages do you miss most?

    A MySQL 4.1 function that was supposed to be there in MySQL 4.1.

    Doesn't allow the limit subquery:
    Code:
    ...NOT IN(SELECT date FROM shoutbox ORDER BY date DESC LIMIT 1)...



    My Personal Home | MageBB Home | Elders Online
    Yes, Noteme is my father.

  3. #3
    Fanatic Member JPicasso's Avatar
    Join Date
    Aug 2001
    Location
    Kalamazoo, MI
    Posts
    843

    Re: Which Programming features from other Languages do you miss most?

    Case Insensitivity in VB.anything. C# is case SENSITIVE, although, the intellisense in VS2005 is still NOT case sensitive.
    Very helpful

    I hope they do away with case sensitivity everywhere.

    getvalue = Getvalue = getValue = GetValue !!!!!
    Merry Christmas

  4. #4
    Banned
    Join Date
    Nov 2005
    Posts
    2,367

    Re: Which Programming features from other Languages do you miss most?

    Microsoft asked C# developers if they wanted case insensitivity. They said no (the pompous premadonnas). They're used to it and preffer it.

  5. #5
    Hyperactive Member ..:RUDI:..'s Avatar
    Join Date
    Aug 2005
    Location
    Yorkshire, England! c0d: Da Vinci
    Posts
    344

    Re: Which Programming features from other Languages do you miss most?

    Oh and my example may not be a programming language, but it ticked me right off!!



    My Personal Home | MageBB Home | Elders Online
    Yes, Noteme is my father.

  6. #6
    Fanatic Member The_Grudge's Avatar
    Join Date
    Jan 2005
    Location
    Canada
    Posts
    836

    Re: Which Programming features from other Languages do you miss most?

    I hate COBOL but there is one thing it does better than VB.

    Rather than say

    VB Code:
    1. If strName = "David" or strName = "Peter" or strName = "John" Then

    You could say something like
    VB Code:
    1. If strName = "David" or "Peter" or "John" Then

  7. #7
    Frenzied Member thegreatone's Avatar
    Join Date
    Aug 2003
    Location
    Oslo, Norway. Mhz:4800 x12
    Posts
    1,333

    Re: Which Programming features from other Languages do you miss most?

    Quote Originally Posted by The_Grudge
    I hate COBOL but there is one thing it does better than VB.

    Rather than say

    VB Code:
    1. If strName = "David" or strName = "Peter" or strName = "John" Then

    You could say something like
    VB Code:
    1. If strName = "David" or "Peter" or "John" Then
    Probably one of the only things that ticks me off about VB to be honest.
    Zeegnahtuer?

  8. #8
    type Woss is new Grumpy; wossname's Avatar
    Join Date
    Aug 2002
    Location
    #!/bin/bash
    Posts
    5,682

    Re: Which Programming features from other Languages do you miss most?

    Stop whining about case sensitivity. It makes you sound like a complete beginner.

    And please stop pretending that VB is useful for anything more than wasting clock cycles.

    I don't live here any more.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width