Click here to Skip to main content
15,891,136 members
Home / Discussions / C#
   

C#

 
AnswerRe: Understanding the steps in creating a GUI project named DisplayQuotes in Visual Studios IDE, C# programming Pin
Pete O'Hanlon18-Aug-17 2:46
mvePete O'Hanlon18-Aug-17 2:46 
QuestionRe: Understanding the steps in creating a GUI project named DisplayQuotes in Visual Studios IDE, C# programming Pin
Luc Pattyn18-Aug-17 3:00
sitebuilderLuc Pattyn18-Aug-17 3:00 
AnswerRe: Understanding the steps in creating a GUI project named DisplayQuotes in Visual Studios IDE, C# programming Pin
Pete O'Hanlon18-Aug-17 3:48
mvePete O'Hanlon18-Aug-17 3:48 
GeneralRe: Understanding the steps in creating a GUI project named DisplayQuotes in Visual Studios IDE, C# programming Pin
OriginalGriff18-Aug-17 3:55
mveOriginalGriff18-Aug-17 3:55 
GeneralRe: Understanding the steps in creating a GUI project named DisplayQuotes in Visual Studios IDE, C# programming Pin
Luc Pattyn18-Aug-17 4:30
sitebuilderLuc Pattyn18-Aug-17 4:30 
GeneralRe: Understanding the steps in creating a GUI project named DisplayQuotes in Visual Studios IDE, C# programming Pin
Member 1336452018-Aug-17 7:24
Member 1336452018-Aug-17 7:24 
GeneralRe: Understanding the steps in creating a GUI project named DisplayQuotes in Visual Studios IDE, C# programming Pin
Richard Deeming18-Aug-17 7:33
mveRichard Deeming18-Aug-17 7:33 
QuestionXML MySql error Pin
Rıza Berkay Ayçelebi14-Aug-17 1:34
Rıza Berkay Ayçelebi14-Aug-17 1:34 
C# codes is exist below.I am trying to query like in below the codes.I am creating queries via web service using xml.You can see below the codes
karthareket.kk_no
colum name when I run this codes visual studio give an error.You can see error below.May you help me?

error picture here

C#
//C# Form

private void KKTahsilat()
        {
            sql = "SELECT bnisim_ad, kk_adi, cr_adi, DATE_FORMAT(kk_odemetarih,'%d.%m.%Y') AS islemtarih, DATE_FORMAT(bh_tarih,'%d.%m.%Y') AS vadetarih, bh_tutar,bh_tutarbirim, kk_taksitsay, bh_slipdetay as taksit, 
bh_tur, kk_belgeno, kk_tutar FROM tbodeme2017,tbkasa2017, (tbbankahareket2017, tbkredikart2017) LEFT JOIN tbbankakredikartiplan ON (kk_planid=bkp_id) 
LEFT JOIN tbbankakredikartiplantaksit ON (bkpt_planid=bkp_id AND bkpt_taksit=bh_slipdetay), tbcari,tbbankaisim,tbbanka,tbbankakredikarti 
where od_izahat=kk_izahat AND od_satisno=bh_islemno AND ka_islemad=kk_izahat AND ka_stno=bh_islemno AND tbkredikart2017.kk_no=bh_islemno AND cr_no=tbkredikart2017.kk_musno AND bn_bankano = bnisim_id AND bkredikart2017.kk_bankano = bn_id AND tbkredikart2017.kk_posid = tbbankakredikarti.kk_no AND bh_tur LIKE 'Kredi Kartı Tahsilat' ";

            response = veri.exportDataXML(login, sql);

            XmlDocument xmlcari = new XmlDocument();
            xmlcari.LoadXml(response);
            XmlNodeList isim = xmlcari.SelectNodes("table/rows/row");

            kkTahsilat = 0;
            foreach (XmlNode node in isim)
            {
                kkTahsilat += XmlConvert.ToDouble(node.ChildNodes[5].InnerText);
            }

        }


//Service Reference
namespace Livella_Cek.webservis {
    
    
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
    [System.ServiceModel.ServiceContractAttribute(Namespace="urn:WebticariService", ConfigurationName="webservis.WebticariServicePortType")]
    public interface WebticariServicePortType {
[System.ServiceModel.OperationContractAttribute(Action="urn:WebticariService#exportDataXML", ReplyAction="*")]
        [System.ServiceModel.XmlSerializerFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc, SupportFaults=true, Use=System.ServiceModel.OperationFormatUse.Encoded)]
        [return: System.ServiceModel.MessageParameterAttribute(Name="return")]
        string exportDataXML(string token, string query);
}
public string exportDataXML(string token, string query) {
            return base.Channel.exportDataXML(token, query);
        }
}

AnswerRe: XML MySql error Pin
Richard MacCutchan14-Aug-17 6:04
mveRichard MacCutchan14-Aug-17 6:04 
GeneralRe: XML MySql error Pin
Rıza Berkay Ayçelebi14-Aug-17 18:41
Rıza Berkay Ayçelebi14-Aug-17 18:41 
GeneralRe: XML MySql error Pin
Richard MacCutchan14-Aug-17 21:29
mveRichard MacCutchan14-Aug-17 21:29 
AnswerRe: XML MySql error Pin
Pete O'Hanlon15-Aug-17 0:24
mvePete O'Hanlon15-Aug-17 0:24 
GeneralRe: XML MySql error Pin
jschell16-Aug-17 6:31
jschell16-Aug-17 6:31 
QuestionHow to create a virtual disk storage software in c # Pin
Nguyễn Mạnh Sơn13-Aug-17 4:24
Nguyễn Mạnh Sơn13-Aug-17 4:24 
AnswerRe: How to create a virtual disk storage software in c # Pin
Dave Kreskowiak13-Aug-17 4:42
mveDave Kreskowiak13-Aug-17 4:42 
AnswerRe: How to create a virtual disk storage software in c # Pin
Eddy Vluggen13-Aug-17 6:12
professionalEddy Vluggen13-Aug-17 6:12 
QuestionScrollEventType.EndScroll in panel scroll bar did not work Pin
Lawliet072710-Aug-17 19:05
Lawliet072710-Aug-17 19:05 
AnswerRe: ScrollEventType.EndScroll in panel scroll bar did not work Pin
BillWoodruff10-Aug-17 19:40
professionalBillWoodruff10-Aug-17 19:40 
QuestionFind garbage object in form designer file ? Pin
Member 245846710-Aug-17 18:52
Member 245846710-Aug-17 18:52 
AnswerRe: Find garbage object in form designer file ? Pin
BillWoodruff10-Aug-17 19:34
professionalBillWoodruff10-Aug-17 19:34 
GeneralRe: Find garbage object in form designer file ? Pin
Member 245846711-Aug-17 21:52
Member 245846711-Aug-17 21:52 
GeneralRe: Find garbage object in form designer file ? Pin
Pete O'Hanlon15-Aug-17 1:40
mvePete O'Hanlon15-Aug-17 1:40 
GeneralRe: Find garbage object in form designer file ? Pin
Member 245846717-Aug-17 19:33
Member 245846717-Aug-17 19:33 
QuestionAsp.net c# Pin
Hrishikeshkamble10-Aug-17 7:13
Hrishikeshkamble10-Aug-17 7:13 
AnswerRe: Asp.net c# Pin
Richard Deeming10-Aug-17 8:33
mveRichard Deeming10-Aug-17 8:33 

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.