User Profile

Collapse

Profile Sidebar

Collapse
Cshrek
Cshrek
Last Activity: Oct 22 '08, 08:57 AM
Joined: Jul 19 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Cshrek
    replied to Local language to english (.net 2.0)
    in .NET
    found it (:

    http://msdn.microsoft.com/en-us/libr...bh(VS.80).aspx...
    See more | Go to post
    Last edited by Plater; Jun 16 '08, 03:22 PM. Reason: link'd

    Leave a comment:


  • Cshrek
    started a topic Local language to english (.net 2.0)
    in .NET

    Local language to english (.net 2.0)

    hi,
    i have this problem that when i run the application on the target computer, most of the dialogs are shown in the windows default language. i don't want to change that, however am looking for a way to change the settings only for my application so it will be shown in English only.

    i remember that long ago i seen such article over the Internet, but i just cant find anything now.
    any idea how it can be done?
    ...
    See more | Go to post

  • Cshrek
    replied to T-SQL Loop on selected query
    oh, yeah it seems like very good answer.
    thanks a lot (:
    See more | Go to post

    Leave a comment:


  • Cshrek
    replied to T-SQL Loop on selected query
    Oky thanks a lot for the willing to help.

    as i already found some solution for the current problem, am still face times when i like to loop on returned tables. so i will give an example:

    ----------------------------------------------

    SELECT * FROM Customers

    will return:

    Name LastName Age

    Jacob Smith 35
    John Doe 63
    Anja Brow...
    See more | Go to post

    Leave a comment:


  • Cshrek
    replied to T-SQL Loop on selected query
    sorry for the miss info.

    i mean, after the above was executed, i like to loop on each row that the query returns, and execute another SELECT on the table that returned.

    but am not so sure if it is possible, so excuse me if not please.
    See more | Go to post

    Leave a comment:


  • Cshrek
    started a topic T-SQL Loop on selected query

    T-SQL Loop on selected query

    hi,

    i have a small query :

    -----------------------------------------------------------------------

    SELECT *
    FROM Fares INNER JOIN Routes
    ON Fares.RouteID = Routes.RouteID
    WHERE Routes.Origion = @Origion
    AND Routes.Destenai tion = @Destenaition
    AND Fares.ValidFrom < @Date AND Fares.ValidUnti ll > @Date

    -------------------------------------------------------------------------...
    See more | Go to post

  • Cshrek
    replied to multi rows SELECT
    hey, thanks.
    wehn i try to run that code:

    --------------------------------------------------------------------------------------------------------------

    ALTER PROCEDURE dbo.AccountTrak ingSELECT

    @From smallDateTime,

    @To smallDateTime

    AS

    DECLARE @VolID int

    DECLARE @TransactionID int

    declare cur1 for select VolID...
    See more | Go to post

    Leave a comment:


  • Cshrek
    started a topic multi rows SELECT

    multi rows SELECT

    helo,
    i have no problems executing that query, but it only returnes the last row from each table.
    how would i be able to retrive all the rows?

    ALTER PROCEDURE dbo.AccountTrak ingSELECT

    @From smallDateTime,
    @To smallDateTime


    AS

    DECLARE @VolID int

    DECLARE @TransactionID int

    SELECT @VolID = VolID, @TransactionID = TransactionID...
    See more | Go to post
No activity results to display
Show More
Working...