Click here to Skip to main content
15,904,503 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: programming G510 Pin
Eddy Vluggen28-Aug-12 7:43
professionalEddy Vluggen28-Aug-12 7:43 
GeneralRe: programming G510 Pin
JR21228-Aug-12 8:09
JR21228-Aug-12 8:09 
GeneralRe: programming G510 Pin
Eddy Vluggen28-Aug-12 8:34
professionalEddy Vluggen28-Aug-12 8:34 
QuestionAddHandler and RemoveHandler Pin
biop.codeproject27-Aug-12 20:36
biop.codeproject27-Aug-12 20:36 
AnswerRe: AddHandler and RemoveHandler Pin
Simon_Whale27-Aug-12 22:50
Simon_Whale27-Aug-12 22:50 
GeneralRe: AddHandler and RemoveHandler Pin
biop.codeproject28-Aug-12 16:10
biop.codeproject28-Aug-12 16:10 
AnswerRe: AddHandler and RemoveHandler Pin
Shameel28-Aug-12 15:06
professionalShameel28-Aug-12 15:06 
QuestionControlling No. of Loggeed users Pin
SPSandy26-Aug-12 22:49
SPSandy26-Aug-12 22:49 
AnswerRe: Controlling No. of Loggeed users Pin
Eddy Vluggen27-Aug-12 0:12
professionalEddy Vluggen27-Aug-12 0:12 
GeneralRe: Controlling No. of Loggeed users Pin
SPSandy27-Aug-12 6:42
SPSandy27-Aug-12 6:42 
GeneralRe: Controlling No. of Loggeed users Pin
Eddy Vluggen27-Aug-12 8:01
professionalEddy Vluggen27-Aug-12 8:01 
GeneralRe: Controlling No. of Loggeed users Pin
SPSandy28-Aug-12 6:48
SPSandy28-Aug-12 6:48 
GeneralRe: Controlling No. of Loggeed users Pin
Eddy Vluggen28-Aug-12 8:05
professionalEddy Vluggen28-Aug-12 8:05 
AnswerRe: Controlling No. of Loggeed users Pin
pramod.hegde27-Aug-12 3:28
professionalpramod.hegde27-Aug-12 3:28 
GeneralRe: Controlling No. of Loggeed users Pin
SPSandy27-Aug-12 6:46
SPSandy27-Aug-12 6:46 
GeneralRe: Controlling No. of Loggeed users Pin
pramod.hegde27-Aug-12 6:52
professionalpramod.hegde27-Aug-12 6:52 
GeneralRe: Controlling No. of Loggeed users Pin
SPSandy28-Aug-12 6:49
SPSandy28-Aug-12 6:49 
QuestionSOAP Data: How to Convert Different Datatypes? Pin
Sonhospa24-Aug-12 1:47
Sonhospa24-Aug-12 1:47 
Hi all,

for my app I retrieve 'SOAP' data (using the PayPal Api), which have to be written to an Excel file in the end. I don't have any experience with web applications, XML, serialization etc., so that I'm afraid the idea of assigning each field to the properties of a 'Transaction' class might be useless or at least a long way round.

From my logfile I can see that it's transferred in the format
<Status xsi:type="xs:string">Completed</Status><GrossAmount xsi:type="cc:BasicAmountType" currencyID="EUR">41.80</GrossAmount>
and I try to fill the class this way ((...).= abbreviated):
For Each transactionDetail As GetTransactionDetailsResponseType In detailsList
     If transactionDetail(...).LastName IsNot Nothing Then
          Dim t2 As New Transaction
          With t2
               .Transaction_ID = transactionDetail(...).TransactionID
               .Street1 = transactionDetail(...).Street1
               .Quantity = Val(transactionDetail(...).Quantity)          
          End With
     End If
Next
From some web sources – which all seem to be written for experts – I assume there must me much easier (and less error-prone) ways to process the data, but I don't know where to start or find code examples.

Would someone be so kind as to give me some guidance?

Thank you very much,
Mick
AnswerRe: SOAP Data: How to Convert Different Datatypes? Pin
Abhinav S24-Aug-12 2:15
Abhinav S24-Aug-12 2:15 
GeneralRe: SOAP Data: How to Convert Different Datatypes? Pin
Sonhospa24-Aug-12 2:55
Sonhospa24-Aug-12 2:55 
QuestionToo many Connections in MySQL Pin
SPSandy23-Aug-12 22:41
SPSandy23-Aug-12 22:41 
AnswerRe: Too many Connections in MySQL Pin
David Mujica24-Aug-12 2:10
David Mujica24-Aug-12 2:10 
GeneralRe: Too many Connections in MySQL Pin
Dave Kreskowiak24-Aug-12 4:26
mveDave Kreskowiak24-Aug-12 4:26 
GeneralRe: Too many Connections in MySQL Pin
SPSandy24-Aug-12 6:41
SPSandy24-Aug-12 6:41 
GeneralRe: Too many Connections in MySQL Pin
Dave Kreskowiak24-Aug-12 9:47
mveDave Kreskowiak24-Aug-12 9:47 

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.