Click here to Skip to main content
15,887,027 members
Home / Discussions / Visual Basic
   

Visual Basic

 
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 
AnswerRe: Too many Connections in MySQL Pin
Eddy Vluggen25-Aug-12 6:23
professionalEddy Vluggen25-Aug-12 6:23 
GeneralBatch program Pin
David Mujica24-Aug-12 10:23
David Mujica24-Aug-12 10:23 
GeneralRe: Too many Connections in MySQL Pin
SPSandy24-Aug-12 6:34
SPSandy24-Aug-12 6:34 
AnswerRe: Too many Connections in MySQL Pin
Dave Kreskowiak24-Aug-12 4:23
mveDave Kreskowiak24-Aug-12 4:23 
QuestionWhat is the Visual Basic Code...this is urgent Pin
Member 937845723-Aug-12 15:31
Member 937845723-Aug-12 15:31 
AnswerRe: What is the Visual Basic Code...this is urgent Pin
Wes Aday23-Aug-12 16:00
professionalWes Aday23-Aug-12 16:00 
AnswerRe: What is the Visual Basic Code...this is urgent Pin
Dave Kreskowiak23-Aug-12 18:15
mveDave Kreskowiak23-Aug-12 18:15 
AnswerRe: What is the Visual Basic Code...this is urgent Pin
Joan M24-Aug-12 1:43
professionalJoan M24-Aug-12 1:43 
QuestionRows.Clear is not working properly for an Unbound DataGridView in VB.NET 2005 Pin
Phoenix Hawke23-Aug-12 11:01
Phoenix Hawke23-Aug-12 11:01 
AnswerRe: Rows.Clear is not working properly for an Unbound DataGridView in VB.NET 2005 Pin
Dave Kreskowiak23-Aug-12 18:24
mveDave Kreskowiak23-Aug-12 18:24 

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.