Click here to Skip to main content
15,885,365 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: How to write data to XML file using ASP.net/C# if that file already using by another process Pin
Dave Kreskowiak4-Jul-13 6:00
mveDave Kreskowiak4-Jul-13 6:00 
GeneralRe: How to write data to XML file using ASP.net/C# if that file already using by another process Pin
ven7534-Jul-13 9:23
ven7534-Jul-13 9:23 
GeneralRe: How to write data to XML file using ASP.net/C# if that file already using by another process Pin
Eddy Vluggen4-Jul-13 10:16
professionalEddy Vluggen4-Jul-13 10:16 
GeneralRe: How to write data to XML file using ASP.net/C# if that file already using by another process Pin
Dave Kreskowiak4-Jul-13 10:57
mveDave Kreskowiak4-Jul-13 10:57 
GeneralRe: How to write data to XML file using ASP.net/C# if that file already using by another process Pin
Mohammed Hameed9-Jul-13 8:35
professionalMohammed Hameed9-Jul-13 8:35 
QuestionTimeOut with Data Set Pin
nagham_4ng3-Jul-13 23:13
nagham_4ng3-Jul-13 23:13 
QuestionRe: TimeOut with Data Set Pin
Eddy Vluggen4-Jul-13 4:58
professionalEddy Vluggen4-Jul-13 4:58 
SuggestionRe: TimeOut with Data Set Pin
Richard Deeming4-Jul-13 5:17
mveRichard Deeming4-Jul-13 5:17 
nagham_4ng wrote:
FROM item i, operation_detail od,operation_header oh,location l
WHERE
i.item_id=od.item_id and i.sequence=od.sequence and
od.operation_header_id=oh.operation_header_id and
oh.location_id=l.location_id and

You should try to avoid this old-style join syntax; use an INNER JOIN instead:
SQL
FROM
   item As i
   INNER JOIN operation_detail As od
   ON i.item_id = od.item_id And i.sequence = od.sequence
   INNER JOIN operation_header As oh
   ON od.operation_header_id = oh.operation_header_id
   INNER JOIN location As l
   ON oh.location_id = l.location_id
WHERE
   ...




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


GeneralRe: TimeOut with Data Set Pin
nagham_4ng4-Jul-13 19:23
nagham_4ng4-Jul-13 19:23 
GeneralRe: TimeOut with Data Set Pin
Eddy Vluggen5-Jul-13 7:07
professionalEddy Vluggen5-Jul-13 7:07 
GeneralRe: TimeOut with Data Set Pin
nagham_4ng5-Jul-13 19:48
nagham_4ng5-Jul-13 19:48 
GeneralRe: TimeOut with Data Set Pin
nagham_4ng8-Jul-13 21:12
nagham_4ng8-Jul-13 21:12 
GeneralRe: TimeOut with Data Set Pin
Eddy Vluggen9-Jul-13 8:44
professionalEddy Vluggen9-Jul-13 8:44 
Question[Solved] Message Queue, sending a class including a bitmap Pin
bas-man823-Jul-13 0:06
bas-man823-Jul-13 0:06 
AnswerRe: Message Queue, sending a class including a bitmap Pin
bas-man823-Jul-13 22:50
bas-man823-Jul-13 22:50 
QuestionMessage Queue Pin
Member 997471330-Jun-13 1:06
Member 997471330-Jun-13 1:06 
AnswerRe: Message Queue Pin
Pete O'Hanlon30-Jun-13 10:57
mvePete O'Hanlon30-Jun-13 10:57 
GeneralRe: Message Queue Pin
Member 997471330-Jun-13 23:19
Member 997471330-Jun-13 23:19 
GeneralRe: Message Queue Pin
Pete O'Hanlon1-Jul-13 3:01
mvePete O'Hanlon1-Jul-13 3:01 
QuestionCan not move controls over a user control Pin
dSolariuM29-Jun-13 9:53
dSolariuM29-Jun-13 9:53 
QuestionDiscussion on Screen Size and MDI Pin
Ron Beyer26-Jun-13 12:20
professionalRon Beyer26-Jun-13 12:20 
AnswerRe: Discussion on Screen Size and MDI Pin
Sergey Alexandrovich Kryukov26-Jun-13 13:33
mvaSergey Alexandrovich Kryukov26-Jun-13 13:33 
GeneralRe: Discussion on Screen Size and MDI Pin
Ron Beyer26-Jun-13 14:03
professionalRon Beyer26-Jun-13 14:03 
GeneralRe: Discussion on Screen Size and MDI Pin
Sergey Alexandrovich Kryukov26-Jun-13 16:55
mvaSergey Alexandrovich Kryukov26-Jun-13 16:55 
SuggestionRe: Discussion on Screen Size and MDI Pin
TnTinMn27-Jun-13 8:00
TnTinMn27-Jun-13 8:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.