Search:

Type: Posts; User: dee-u

Page 1 of 13 1 2 3 4

Search: Search took 0.26 seconds.

  1. Replies
    7
    Views
    171

    Re: Criticize my UI design

    Thanks, it is a good read!
  2. Replies
    9
    Views
    150

    Re: Please help me about datagrid

    AFAIK, you can use checkboxes on a plain datagrid. The control used in the link is probably an MSHFlexgrid or MSFlexGrid.
  3. Replies
    7
    Views
    171

    Re: Criticize my UI design

    Well, that is just random Photoshop font I tried, I am actually contemplating on removing that panel altogether since it is just a space occupier but without much value. Will also try to tweak my...
  4. Replies
    7
    Views
    171

    Re: Criticize my UI design

    Thanks guys, been experimenting with it and thus here are my changes to the color scheme, making it closer to an 'outlook' design. Still working out what scheme to use for the buttons.

    @sz: I am...
  5. Re: could someone help me with some code to increment a mac address please

    Your 2nd question should be on another thread. If this was resolved then you can mark it.
  6. Replies
    6
    Views
    160

    Re: Test post options

    I thought you were still booing bieber.
  7. Replies
    4
    Views
    99

    Re: Apostrophe in String Data causes error.

    This is already covered in the FAQ section: http://www.vbforums.com/showthread.php?350176-Database-How-do-I-put-the-character-into-an-SQL-string
  8. Re: Listview items/rows to access db

    The rs.Update should be inside the loop:


    rs.AddNew
    rs.Fields("Assettag") = ListView1.SelectedItem.Text
    rs.Fields("AssetDescription") = ListView1.SelectedItem.SubItems(1)
    rs.Update
  9. Replies
    0
    Views
    59

    Criticize my UI design

    Just double posting since there is more traffic here than the WPF section :D

    http://www.vbforums.com/showthread.php?722579-Criticize-my-UI-design&p=4420617#post4420617
  10. Replies
    6
    Views
    160

    Re: Test post options

    Billboard Music Awards effect
  11. Replies
    7
    Views
    171

    Criticize my UI design

    Designing the UI is not my strongest skill so I am not sure if my UI looks professional or childish so I wish to get your criticisms on attached screenshot.100451
  12. Replies
    16
    Views
    203

    Re: What I.T. people hates

    I have no problem with socializing, its just that I am not comfortable mingling with lots of people who are not really close to me. Though it is a different thing if I am with my closest friends.
  13. Replies
    16
    Views
    203

    What I.T. people hates

    First and foremost, I hate partys
  14. Thread: car no start

    by dee-u
    Replies
    16
    Views
    258

    Re: car no start

    your car maybe hacked
  15. Thread: SQL Help

    by dee-u
    Replies
    9
    Views
    333

    Re: SQL Help

    As I've said, my sample code just gets the FIRST column (index 0), to get the other columns you just have to use the other indexes (1, 2,3,etc).


    cursor.GetString(1) //second column...
  16. Re: Command Button Disabled After Clicking On One Record Only

    What language are you using? You could check some condition from the selected record if you want to disable/enable the command button.
  17. Thread: SQL Help

    by dee-u
    Replies
    9
    Views
    333

    Re: SQL Help

    Something like this, depends on what type of column. This gets the 1st column and assuming it is a string:

    while (cursor.Read())
    label1.Text = (cursor.GetString(0))
  18. Thread: Pc v/s laptop

    by dee-u
    Replies
    9
    Views
    191

    Re: Pc v/s laptop

    If you need mobility then you should go with laptop, if not then desktop.
  19. Replies
    8
    Views
    344

    Re: Would WPF serve this need?

    Not sure what you mean by 'spot' but every controls should also be clickable. There is also a code-behind in WPF but if you are new into it I would recommend looking at MVVM design pattern which...
  20. Re: MVVM: Populate a view (with listbox) when an item from another view (with listbox

    Got it working by exposing a ViewModel to be consumed by the Views. This is my 'parent' ViewModel (stripped unnecessary codes) and as you can see there is the ExerciseVM and Example VM in there:

    ...
  21. Re: How to bind to usercontrol child controls from parent view?

    What I would do is to also create a ViewModel for that usercontrol, and in your parent view you just have to expose a ViewMode property for that usercontrol where it can bind into. Actually, just...
  22. Replies
    18
    Views
    318

    Re: Important news from Louisiana!

    I'm gonna be a father for the 4th time, probably by October. I need to purchase more computers now.
  23. Re: MVVM: Populate a view (with listbox) when an item from another view (with listbox

    I've seen some threads here that talked about MVVM so I tried asking here but forgot to convert my code. :D
  24. [RESOLVED] MVVM: Populate a view (with listbox) when an item from another view (with listbox) is

    I have a list of Topics, and for each topic there are some Examples. What I want to be able to do is that when a topic is selected then I will populate another view with all Examples for that...
  25. Replies
    0
    Views
    92

    New to MVVM: how to workout the View

    I've just got 3 classes: Topic, Example and Exercise. Topic is the main class where both Example and Exercise is linked to. In my window (non-MVVM) I am populating a listbox with my topics, and upon...
  26. Replies
    51
    Views
    869

    Re: Forum Upgrade - May 9, 2013

    I second the motion.
  27. Replies
    5
    Views
    227

    Re: [RESOLVED] WPF: Binding to IEnumerator?

    CollectionView worked.
  28. Determine where the records of an RDL comes from?

    We have here an application (not written by me) and I would like to know what SP or View a certain RDL gets its record from, I have access to the database and the report server but I don't know how...
  29. Replies
    5
    Views
    227

    Re: WPF: Binding to IEnumerator?

    Somehow I've considered doing that but I thought it maybe ugly. :( Looking at CollectionView for now, I hope it will work in my case.
  30. Re: Block facebook and youtube on certain computers in domain

    Will redirecting in the hosts file work for HTTPS?
  31. Re: Block facebook and youtube on certain computers in domain

    Yes, looking at a Proxy Server solution, can you recommend a free one that works? =)
  32. Replies
    5
    Views
    227

    [RESOLVED] WPF: Binding to IEnumerator?

    I have two buttons, (next button and previous button) that moves to the next or previous record, I am using IEnumerator for this and added the MovePrevious method. Upon moving records, I am manually...
  33. Re: Need Press/Hold/Release type button

    Can't you use the MouseUp and MouseDown events of the Command Button?
  34. Block facebook and youtube on certain computers in domain

    Been googling but not sure if the methods presented will be able to stop our users so I am asking here if there is a way to completely block those two sites in some computers only in our domain?...
  35. Re: Connection string for oracle 10g Database Issue

    As I've said I gave up on trying to make it work in a 64bit machine. =)
  36. Re: Connection string for oracle 10g Database Issue

    If I am not mistaken the oracle driver cannot be installed on a 64bit machine, I also tried a few months ago but gave up after trying all recommendations on the net, it works on a 32bit machine...
  37. Replies
    105
    Views
    1,366

    Re: Bought my first Gun

    That guy looks like your avatar
  38. Re: Trouble opening a recordset in Access 2007 form code

    You have to MoveLast before reading the Recordcount so it will return the true number.
  39. Replies
    55
    Views
    965

    Re: Ask a guy from Mars anything.

    That is not latin and that is not randomly created? =) That's our local dialect which means "what is my real name?"

    EDIT:

    How are did you survive living in Martian in the undergrounds?
  40. Replies
    55
    Views
    965

    Re: Ask a guy from Mars anything.

    Anya ti us-usto nga nagan ko?
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4