Search:

Type: Posts; User: eugz

Page 1 of 5 1 2 3 4

Search: Search took 0.14 seconds.

  1. Replies
    0
    Views
    4,107

    Filter ListView by date range

    Hi All.

    In my WPF Windows form project I would like to filter ListView by date range. I populated CustomerListView like:

    Me.CustomerListTableAdapter.Fill(Me.DataSet1.CustomerList)
    ...
  2. Replies
    1
    Views
    718

    tabstop programmatically

    Hi All

    I created form in WPF application. That form has some TextBox field. When I enter unique number in TextBox1 and that number exists in database rest TextBox fields received according binding...
  3. Thread: splashscreen

    by eugz
    Replies
    1
    Views
    630

    VS 2008 splashscreen

    Hi All.

    When I run project splashscreen is popup and then Logon window is run. But unfortunately when Logon window is run the splashscreen still open like maximized window and I cannot see Logon...
  4. Replies
    1
    Views
    605

    VS 2008 display data without select in listbox

    Hi All.
    I would like open form and only display data in listbox without ability to select record. How to do it?
    Thanks.
  5. Replies
    1
    Views
    1,216

    VS 2008 passing data from wpf parent form to child form

    Hi All.
    In my WPF Form1 I have TextBlock1 that fill from AddressTableAdapter. To edit address user must click EditButton to open Form2 to perform changes. My problem is passing data to Form2 from...
  6. Replies
    0
    Views
    417

    VS 2008 textblock with multiple binding

    Hi All.
    I would like creaate XMAL textblock with multiple binnding. For instance, in table Address I have Street, City, State, and ZIP fields. And I would like to display all in one line in...
  7. Replies
    2
    Views
    4,311

    filter listview by two date value

    Hi All.
    In my WPF form would like to filter listview by date between two DatePickers DateFrom and DateTo. If is it possible how to do it?
    Thanks.
  8. Thread: del

    by eugz
    Replies
    0
    Views
    2,304

    del

    delete
  9. Thread: filter DGV

    by eugz
    Replies
    3
    Views
    709

    VS 2008 filter DGV

    Hi All.
    In ToolStrip of DGV form I have DateFromDateTimePicker and DateToDateTimePicker. I would lke to filter DVG by values of these DateTimePicker.
    Thanks.
  10. Replies
    12
    Views
    1,266

    VS 2008 validation textbox

    Hi All.
    I validate TextBox for numeric and legth no more then 7 characters. I'm checking for Not IsNumber and Len. But I want to give a user to save record when TextBox is blank. If is it possible...
  11. Replies
    6
    Views
    2,715

    VS 2008 Re: change value NumericUpDown

    Thank for replays.
    Thanks jmcilhinney. I tried to use your code and when I select any value form ComboBox1 or ComboBox2 the NumericUpDown control get value 2.
    In my case each ComboBox has range...
  12. Replies
    6
    Views
    2,715

    VS 2008 Re: change value NumericUpDown

    I code procedure for combo1 like:

    Private Sub ComboBox1_SelectedValueChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ComboBox1.SelectedValueChanged
    Select Case...
  13. Replies
    6
    Views
    2,715

    VS 2008 change value NumericUpDown

    Hi All.
    In my has 2 ComboBox fields and 1 NumericUpDown field. I would like change value NumericUpDown in depend of value in Combobox.
    1. if ComboBox1 and ComboBox2 is empty NumericUpDown = 0
    2....
  14. Replies
    11
    Views
    7,015

    VS 2008 Re: display default date on DateTimePicker

    I'm binding DGV to TableAdapter based on SP

    procedure [dbo].[sp_Appointments]
    (
    @AppointmentDateFrom as datetime
    ,@AppointmentDateTo as datetime
    )
    as

    select distinct
  15. Replies
    11
    Views
    7,015

    VS 2008 Re: display default date on DateTimePicker

    Hi All.
    Now I would like to filter my DGV based on values DateTimePicker1 and DateTimePicker2. How to do it?
    Thanks.
  16. Replies
    11
    Views
    7,015

    VS 2008 Re: display default date on DateTimePicker

    Thanks you very mutch. I got it.
  17. Replies
    11
    Views
    7,015

    VS 2008 Re: display default date on DateTimePicker

    Thanks a lot. That amassing. It looks exactly like I expected.
    Is it possible to modify it by this way. If user will change value on second DateTimePicker the value on first DateTimePicker...
  18. Replies
    11
    Views
    7,015

    VS 2008 display default date on DateTimePicker

    Hi All.
    I would like to create ToolStripe on my DGV form with 2 DateTimePicker tools. And when user open form those tools will display by default date:
    - first DateTimePicker will show date on 2...
  19. Thread: publish problem

    by eugz
    Replies
    0
    Views
    447

    VS 2008 publish problem

    Hi All.
    When I publish project at the first time all is OK. At the second time after modified and buid project successfully I tried to publish it again I'm getting error message:
    Unable to remove...
  20. Thread: publishing

    by eugz
    Replies
    1
    Views
    564

    VS 2008 publishing

    Hi All.
    After publised succeful and install project on user computer I checked property publish prerequistes. I found near MDAC 2.8 component ! yellow triangle. What is it mean?
    Thanks.
  21. Replies
    5
    Views
    1,047

    Re: auto restart PC when open design view WPF form

    I don't have a problem with any other options of Visual Studio. The code view of WPF open normally. Only when I try to open Design View and I run form. On my PC installed Windows XP SP3.
    Thanks for...
  22. Replies
    5
    Views
    1,047

    auto restart PC when open design view WPF form

    Hi All.
    When I try to open WPF design view form or when I run form my computer auto restart. That problem I get on new machine. The previous machine doesn't had such problem. On the both machine I...
  23. Replies
    8
    Views
    893

    VS 2008 Re: fill combobox depend from logon username

    Tanks for help.

    Private Sub HRDetailForm_SetForm(ByVal Sender As Object, ByVal e As System.EventArgs) Handles Me.SetForm
    Me.EmployeesTableAdapter.DropDownFillBy(Me.HRDataSet.Employees, 0)...
  24. Replies
    8
    Views
    893

    VS 2008 Re: fill combobox depend from logon username

    Hi stanav, thaks for replay.
    I try to use your suggestion, but I got error message:
    Cannot bind to the new value member. Parameter name: value
    How to fix that problem?
    Thanks.
  25. Replies
    8
    Views
    893

    VS 2008 fill combobox depend from logon username

    Hi All.
    I have Logon and Detail forms. In Detail form combobox populated by Employee table. I would like, when user logon and open Detail form the combobox will automatically display name of...
  26. Replies
    2
    Views
    692

    VS 2008 display datetimepicker as blank

    Hi All.
    In my detail form I would like to diaplay datetimepicker field as blank in case when user open new record. Is it possible to display blank datetimepicker? How it to do?
    Thanls.
  27. Replies
    2
    Views
    6,465

    VS 2008 DataGridView format to short time

    Hi All.
    My stored procedure covert two integer column Hours and Minutes to varchar data type and after concatenation the result looks like HH:MM (1:05).
    In DGV form I have problem to display same...
  28. Replies
    1
    Views
    516

    suppress front zero

    Hi All.
    How to suppress front zero in parameter field?
    Thanks.
  29. Replies
    0
    Views
    424

    sql to create formula

    Hi All.
    I use crystal report application in VS 2008. I created SELECT statement to convert Integer data type to Time. And I would like to use that select to create formula parameter field to display...
  30. Replies
    5
    Views
    977

    VS 2008 Re: Cannot delete project folder or files

    Hi All.
    Need help.
    Problem to modify project that located on server. When try to delete any project's file message is popup:
    "The process cannot access the file because it is being used by another...
  31. Replies
    3
    Views
    1,067

    VS 2008 Re: publishing problem

    Thanks for replay.
    The Process Explorer that you suggest do need to install on a server or on my machine?
    No one hasn't chance is accessing project on the actual server. If you get other idea I...
  32. Replies
    3
    Views
    1,067

    VS 2008 publishing problem

    Hi All.
    When I publish any project first time, every thing is fine. But when I try to republish project after it was updated I'm gotting a message:
    "Cannot publish because a project failed to...
  33. Replies
    5
    Views
    977

    VS 2008 Re: Cannot delete project folder

    Thanks for replay.
    I still have same problem. After restart server I had ability rename or delete folders. But in my situation I cannot use that procedure often. Now again I cannot delete or rename...
  34. Replies
    8
    Views
    1,041

    Re: UpDownNumber or DataTime save as Null

    My problem is how to save value from tools DateTimePicker1 and UpDownNumber1 as Null because by defauly UpDownNumber1 has value 0 and DateTimePicker1 has value current date. When click Save I got...
  35. Replies
    5
    Views
    977

    VS 2008 Re: Cannot delete project folder

    Thanks for replay.
    The folder not Read Only. I have permitions to delete files on the server.
    Thanks.
  36. Replies
    5
    Views
    977

    VS 2008 Cannot delete project folder

    Hi All.
    I'm using VS2008 and cannot to delete old project from windows explorer on the server. After press delete button I got message:
    Cannot delete ProjectName: It is being used by another person...
  37. Replies
    8
    Views
    1,041

    UpDownNumber or DataTime save as Null

    Hi All.
    In my form I have 3 tools: combobox1, DateTimePicker1, and UpDownNumber1.
    I'm using ComboBox_SelectedValueChanged to display UpDownNumber1 if combobox1.value = 3 in rest conditions form...
  38. Replies
    3
    Views
    629

    VS 2008 display number in time format

    Hi All.
    I have parent DGV form and child Detail form. The user enter data in Detail from, for instance, the field AbsenceDays keep number of days like integer. If it possible, how to display in DGV...
  39. Replies
    0
    Views
    441

    highlight updated record in DGV

    Hi All.
    I have parent DGV form and child Detail form. I would like when user add new record or update record and click save button on Detail form on DGV form record that was add or update will be...
  40. Replies
    4
    Views
    676

    Re: enter more then 25 hours value

    Hi All.
    Shaggy Hiker, thanks for replay. I'm newer. Can you or somebody show me example how to create user control for my task?
    Thanks.
Results 1 to 40 of 177
Page 1 of 5 1 2 3 4



Click Here to Expand Forum to Full Width