CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: homer.favenir

Page 1 of 4 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    5
    Views
    1,000

    Re: xml with null problem

    the xml file is generated from dataset using binary.
    the null after '>' is auto generated.
    how can i trim or remove it or not including it in generation
  2. Replies
    5
    Views
    1,000

    Re: xml with null problem

    int len = service.Merchant(Convert.ToInt32(trackingNo)).Length - 143;

    yes youre right, it is larger than the generated xml.
    how can i generate it exactly?
    or remove the null values?
  3. Replies
    5
    Views
    1,000

    xml with null problem

    hi,
    i have a script that generates an xml file from dataset.
    the problem is it has nullnullnull characters on the end of the file.



    <merchant>
    <Table>
    <MerchantID>92</MerchantID>
    ...
  4. Replies
    0
    Views
    635

    dataset to xml

    hi,
    i have a dataset and i want to view it as xml in a browser.

    my code is


    string conStr = ConfigurationManager.ConnectionStrings["ConStr"].ConnectionString;
    SqlConnection con = new...
  5. Replies
    1
    Views
    3,445

    Re: autogeneratedeletebutton

    ok, i figured it out.
    for the sake of others ill post it here
    add DataKeyNames="MerchantKey" in the gridview, like this


    <asp:GridView
    ID="GridView1" runat="server"...
  6. Replies
    1
    Views
    3,445

    autogeneratedeletebutton

    hi,
    i have an autogeneratedeletebutton,
    and i have a script


    <Columns>
    <asp:BoundField DataField="MerchantID" HeaderText="ID"
    InsertVisible="False"...
  7. Replies
    3
    Views
    820

    blue squiggle in loop statement

    hi,
    i dont know why my loop statement is not looping and there is blue squiggle in my loop variable



    public void storedProcQuery(string sqlQuery, String[] parameter)
    {
    trx =...
  8. Replies
    0
    Views
    1,085

    wpf datagrid

    hi,
    how can i put data in my datagrid of a wpf app?



    <Window x:Class="WpfApplication2.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    ...
  9. Replies
    6
    Views
    1,272

    Re: auto update application

    ok, i already found it
    http://msdn.microsoft.com/en-us/library/31kztyey&#37;28v=VS.80%29.aspx

    it also checks for update when the application starts.

    thanks

    i will just explore it for now
  10. Replies
    6
    Views
    1,272

    Re: auto update application

    3.5
  11. Replies
    6
    Views
    1,272

    Re: auto update application

    they said clickonce is for framework 2.0 only
  12. Replies
    6
    Views
    1,272

    [RESOLVED] auto update application

    hi,
    i have an application made in csharp and i need to
    update it whenever i made changes.
    the user is in remote office and im in the main office.

    how can i achieve this?

    thanks
  13. Re: cross threading error in background worker

    i removed the bttnExel.Enabled = true;
    and it works!

    thanks again guyz...

    topic solve!
  14. Re: cross threading error in background worker

    bttnExel.Enabled = true;
    error: Cross-thread operation not valid: Control '' accessed from a thread other than the thread it was created on.
  15. Re: cross threading error in background worker

    thanks it works, but how about in my message,
    form1


    private void button2_Click_3(object sender, EventArgs e)
    {
    ReportForm reportfrm = new ReportForm();
    ...
  16. Re: cross threading error in background worker

    i make a simple application that has a background worker



    namespace practice01
    {
    public partial class Form1 : Form
    {

    public Form1()
  17. [RESOLVED] cross threading error in background worker

    Form1


    private void button2_Click_3(object sender, EventArgs e)
    {
    ReportForm reportfrm = new ReportForm();
    reportfrm.ShowDialog(); // this is where the error...
  18. Replies
    0
    Views
    663

    timeout expired

    im trying to execute a query tru csharp as frontend
    but i have error


    Timeout expired. The timeout period elapsed prior to completion of the operation of the server is not responding

    ...
  19. Replies
    0
    Views
    628

    background processing form

    hi,
    im working with a uploading form, it transfer records from a table to another table.
    so it takes time to finish.
    however, i need a status bar or something like that, when the processing is on...
  20. Replies
    1
    Views
    1,266

    Re: openrowset and variables

    anyone knows this? please
  21. Replies
    1
    Views
    1,266

    openrowset and variables

    hi,
    i couldnt make my query working
    i use openrowset to insert records in a table



    ALTER PROCEDURE [dbo].[excelJoinSalesHeader]
    AS
    BEGIN
    DECLARE @filePath varchar(255)
  22. Replies
    5
    Views
    7,141

    Re: copy listbox item to listbox2

    but it only outputs System.data.datarowview and not the items itself.
    btw, my listview has datasource from a table.
    i dont know why it keeps on returning System.data.datarowview.
  23. Replies
    5
    Views
    7,141

    Re: copy listbox item to listbox2

    sorry, i didnt indicate that i want to copy selected items to another listbox

    tia
  24. Replies
    5
    Views
    7,141

    copy listbox item to listbox2

    hi,
    i want to copy items from my listbox1 to listbox2

    here is my code


    private void button1_Click(object sender, EventArgs e)
    {
    string objSelected = "";
  25. Replies
    4
    Views
    874

    Re: excel to database

    Thanks a lot!
Results 1 to 25 of 84
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured