found it (:
http://msdn.microsoft.com/en-us/libr...bh(VS.80).aspx...
User Profile
Collapse
-
-
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?
... -
-
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...Leave a comment:
-
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.Leave a comment:
-
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
-------------------------------------------------------------------------... -
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...Leave a comment:
-
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...
No activity results to display
Show More
Leave a comment: