Search:

Type: Posts; User: arkiboys

Page 1 of 13 1 2 3 4

Search: Search took 0.56 seconds; generated 27 minute(s) ago.

  1. Replies
    2
    Views
    968

    3.0/LINQ Re: windows form control

    That was the issue.
    Thanks
  2. Replies
    2
    Views
    968

    3.0/LINQ [RESOLVED] windows form control

    There are two combo boxes on the windows form.
    Inside the code depending on the click event of a button they both become enabled or disabled i.e.

    cbo1.enabled = true;
    cbo2.enabled = true;

    or...
  3. Replies
    4
    Views
    1,178

    3.0/LINQ Re: is last working day?

    Thank you
  4. Replies
    4
    Views
    1,178

    3.0/LINQ Re: is last working day?

    What do you think about this please?
    Remember that the code only runs weekdays.


    private bool IsLastWorkingDayOfMonth(DateTime dtFileDate)
    {
    DateTime lastWorkingDayOfMonth...
  5. Replies
    4
    Views
    1,178

    3.0/LINQ is last working day?

    Hi,
    The following c# code tells you if the date is the last day of the month.
    Question:
    How can I get the last WORKING day of the month?
    for example, for march, th elast day is saturday which is...
  6. Replies
    0
    Views
    734

    3.0/LINQ read texts in .pdf controls

    Hi,
    My goal is to read the texts inside the controls in the .pdf file...
    I am using the iTextSharp reference...
    The C# code below only reads the texts (Initially typed in the file) but NOT the...
  7. Thread: format string

    by arkiboys
    Replies
    10
    Views
    1,381

    Re: format string

    Hi,
    I followed your code samples but still get the same problem as before.
    I do not spot the issue.
    If it is ok, can you see what I am doing wrong plese?
    Thanks
  8. Thread: format string

    by arkiboys
    Replies
    10
    Views
    1,381

    Re: format string

    It is just a tooltip on datagridview.
    Do you know what I should do?
    Thanks
  9. Thread: format string

    by arkiboys
    Replies
    10
    Views
    1,381

    Re: format string

    Do you mean I have to change the computer settings or the string font?
    How do I use that?
    Thanks
  10. Thread: format string

    by arkiboys
    Replies
    10
    Views
    1,381

    Re: format string

    I followed your code sample but still have the same problem.
    This is my code:


    StringBuilder sb = new StringBuilder();
    if (dt.Rows.Count > 0)
    {
    string...
  11. Thread: format string

    by arkiboys
    Replies
    10
    Views
    1,381

    Re: format string

    Thanks
  12. Thread: format string

    by arkiboys
    Replies
    10
    Views
    1,381

    format string

    I am trying to format a string as follows:
    A small datatable with two fields is retrieved from the database and then I loop through the records to get the value of the fields...

    This is what I...
  13. Thread: read .pdf

    by arkiboys
    Replies
    0
    Views
    746

    3.0/LINQ read .pdf

    Hi,
    At present, my code can access a .pdf file and read a few properties.
    Question:
    How is it possible to extend my c# code so that I can read the text inside txtLastname control which is on the...
  14. Replies
    0
    Views
    508

    read firstname from .pdf file

    The .pdf files have boxes for firstname, lastname, etc
    if possible, please let me know the c# code which allows me to read the text inside the box for these sections such as firstname, lastname,...
  15. Replies
    2
    Views
    1,020

    Re: spice-up winforms in vs2010

    Thanks
  16. Replies
    2
    Views
    1,020

    [RESOLVED] spice-up winforms in vs2010

    Hi,
    I am developing applications in winforms c# 4.0 using alot of the standard controls in visual studio 2010.
    I would like to spice up the UI screens by making them to look more interesting than...
  17. Replies
    2
    Views
    865

    3.0/LINQ Re: populate string array

    Thanks
  18. Replies
    1
    Views
    1,697

    3.0/LINQ [RESOLVED] string to date format

    Hi,
    How do I check if the file's date is today's date?
    i.e. FileA20120216.csv
    As you can see the date in th efile is "20120216" and i would like to compare this to todays date to see if they are...
  19. Replies
    2
    Views
    865

    3.0/LINQ [RESOLVED] populate string array

    Hi,
    In the code below the string array fileNames is populated with files from a directory.
    The directory has files for each day. i.e. FileAxxx.csv where xxx refers to YYYYmmdd
    Question:
    How can...
  20. Replies
    14
    Views
    5,580

    3.0/LINQ Re: [RESOLVED] timer on winform

    Thanks
  21. Replies
    14
    Views
    5,580

    3.0/LINQ Re: timer on winform

    Hi,
    Created a class inside winform project.
    Named it BlinkLabel which inherits from Label.

    Question:
    How do I use this for a form which has a label and needs to blink?
    Thanks
  22. Replies
    14
    Views
    5,580

    3.0/LINQ Re: timer on winform

    Thank you
  23. Replies
    14
    Views
    5,580

    3.0/LINQ Re: timer on winform

    Solved and Thank you
  24. Replies
    14
    Views
    5,580

    3.0/LINQ Re: timer on winform

    No, because say a stored procedure has to be run and each time it takes different length of time.
    Thanks
  25. Replies
    14
    Views
    5,580

    3.0/LINQ Re: timer on winform

    If I use the progress bar, then how can the values be added to the progress bar?
    I mean, I do not know how long one of the long processes may take and so not sure how to place this information on...
  26. Replies
    14
    Views
    5,580

    3.0/LINQ Re: timer on winform

    Do you mean, not to have a timer but instead to have a progress bar?
    Note that I do not know how long the long running tasks can take?
    Thanks
  27. Replies
    14
    Views
    5,580

    3.0/LINQ [RESOLVED] timer on winform

    Hi,
    In my windows form project, every time there is a call to a long running method, I show a small form which has a label control that says, please wait and then after the long running call I hide...
  28. Replies
    2
    Views
    763

    3.0/LINQ Re: populate dt2 from dt1

    Thanks
  29. Replies
    2
    Views
    763

    3.0/LINQ [RESOLVED] populate dt2 from dt1

    Hi,
    How can I populate datatable2 (dt2) from the first datatable1 (dt1), but I do not want dt2 to be dependant of dt1.
    For example:
    I am populating dt2 from dt1. But if the data in dt1 changes, so...
  30. Replies
    1
    Views
    1,128

    3.0/LINQ datagridview filter

    //this is in the form.cs...
    //step 1
    filterDataGridView1.DataSource = dataSet.Tables[0];

    //this is in a separate class...
    //step2
    private static DataTable dataSource = null;

    if (dataSource...
  31. 3.0/LINQ multiselect filter on datagridview header cell

    The datagridview has the automated filter dropdown on several of the COLUMN HEADERS of the datagridview control.
    This filtering of the data inside the datagridview works by filtering only for one...
  32. 3.0/LINQ Re: show ticked items in checklistbox as you tick items

    Solved.
    Thanks
  33. 3.0/LINQ Re: which colours to choose for progress bar

    Thanks
  34. 3.0/LINQ Re: which colours to choose for progress bar

    ?
    Please elaborate
  35. Replies
    1
    Views
    1,333

    3.0/LINQ datagridview multi filter on header columns

    Hi,
    using windows form in c# 4.0
    I have populated a datagridview dgv with data.
    BindingSource is used so that the columns of the dgv have filter options (The little dropdown) on the header of the...
  36. 3.0/LINQ [RESOLVED] which colours to choose for progress bar

    In windows form,
    I am using a combobox (cboProgress) and a ProgressBar (prgProgress)
    In the selectedindexchanged event of the combobox (which is populated with numbers from 10 to 100 at interval...
  37. Re: format datagridview cell to thousand separator

    Thank you
  38. [RESOLVED] format datagridview cell to thousand separator

    In the below code, I am trying to format the value of the cell inside a datagridview in windows form to have thousand separator
    But the problem is that it places .00 at the end of the numbers
    i.e....
  39. 3.0/LINQ Re: show ticked items in checklistbox as you tick items

    Hi,
    I have already used this event you suggested but it gives the same problem as mentioned.
    Thank s for your time
  40. 3.0/LINQ [RESOLVED] show ticked items in checklistbox as you tick items

    using winform,
    Which event do I use to make sure that as I am ticking items inside a checked listbox, a textbox is populated with those values?

    I am using the selectedindexchanged but it does not...
Results 1 to 40 of 499
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width