9,226 reputation
124777
bio website fogcreek.com
location New York, NY
age 36
visits member for 4 years, 9 months
seen 16 hours ago
stats profile views 4,343

CFO Fog Creek Software Inc. CFO Stackoverflow.com LLC


Apr
5
awarded  Famous Question
Apr
5
awarded  Altruist
Apr
3
awarded  Investor
Mar
13
comment Why can I not find journalentries using their RefNumber in Quickbooks SDK?
@KeithPalmer IPP is supposed to be the future, since SDK apps aren't allowed in the store anymore. So strange then that they push IPP to SO, and keep the SDK forum open.
Mar
13
answered Why can I not find journalentries using their RefNumber in Quickbooks SDK?
Mar
13
comment Why can I not find journalentries using their RefNumber in Quickbooks SDK?
@KeithPalmer no, your edit is correct. I don't really get what they are doing with their support.
Mar
13
comment Why can I not find journalentries using their RefNumber in Quickbooks SDK?
@keith I figured. Only problem is Intuit won't look at it if it isn't tagged with the IPP tag...
Mar
12
revised Why can I not find journalentries using their RefNumber in Quickbooks SDK?
added 164 characters in body
Mar
12
asked Why can I not find journalentries using their RefNumber in Quickbooks SDK?
Feb
22
comment How do you find the TxnLineID of a payment line from a Quickbooks transaction if it is part of a Sales Receipt?
Thank you. You got it!
Feb
22
accepted How do you find the TxnLineID of a payment line from a Quickbooks transaction if it is part of a Sales Receipt?
Feb
21
comment How do you find the TxnLineID of a payment line from a Quickbooks transaction if it is part of a Sales Receipt?
Via the SDK and a AppendSalesReceiptAddRq call. The DepositToAccountRef was set.
Feb
21
comment How do you find the TxnLineID of a payment line from a Quickbooks transaction if it is part of a Sales Receipt?
Yes, the last screenshot is the account referenced by ISalesReceipt.DepositToAccountRef. In my case the salesreceipt was also entered programmatically, so CreditCardTxnInfo is actually NULL.
Feb
21
awarded  Nice Question
Feb
20
comment How do you find the TxnLineID of a payment line from a Quickbooks transaction if it is part of a Sales Receipt?
I uploaded a screenshot to the end of my question showing the transaction I'm talking about "marked as cleared" through the UI. I'm trying to do this through the SDK and I can for any txn that I have the txnLineID for. Problem is finding that for the payment of a SalesReceipt.
Feb
20
revised How do you find the TxnLineID of a payment line from a Quickbooks transaction if it is part of a Sales Receipt?
added 226 characters in body
Feb
20
revised How do you beta test an iphone app?
added 6 characters in body
Feb
17
comment C: Different type declaration by casting void pointer in a function
@JaneBerman Correct, you cannot change a type once you've declared it.
Feb
17
comment Resources for learning how to create a database in C
Your question will probably be closed, but its simply because the question you are asking is way to broad for stackoverflow.
Feb
17
comment C: Different type declaration by casting void pointer in a function
This is the correct answer to why it fails. As to how you can fix it, maybe you could just have ONE type, and add a variable to your type to differentiate A/B/C, etc.