Search:

Type: Posts; User: ww99w

Search: Search took 0.01 seconds.

  1. Replies
    0
    Views
    1,092

    [RESOLVED] google organizational chart

    deleted - no function, no reply
  2. Replies
    15
    Views
    25,776

    Re: print barcodes using printdocument

    Yah wow... that was a while ago...
    turned out I was doing it all wrong..
    printing barcodes you need to use a dedicated barcode printer. all it will be very hard for scanners to read the barcodes....
  3. Replies
    0
    Views
    2,401

    ReportViewer from Datatable

    I am trying to fill a report viewer from a datatable.
    This is in WPF and I am already using WindowsFormsHost without problems.

    My report shows the ReportViewer and the navigation bar but nothing...
  4. Replies
    0
    Views
    6,548

    Datagrid Merge Cells + Mouse DoubleClick

    I am trying to Merge some cells in a WPF datagrid when the values are the same.

    But I also have a function for the double clicking the datagrid, where it takes multiple column values from the...
  5. Replies
    6
    Views
    1,345

    Re: SQL sum and join

    Thank you this is exactly what I needed.
  6. Replies
    6
    Views
    1,345

    Re: SQL sum and join

    szlamany: Thank you for your answer but that doesnt work at all.
    that gives the count of distinct orders but does not use the sum of quantity
  7. Replies
    6
    Views
    1,345

    [RESOLVED] SQL sum and join

    I have 2 tables which I am trying to summarize.
    rprod:
    http://i39.tinypic.com/ajkv0x.jpg

    orders:
    http://i41.tinypic.com/25g53py.png

    i am using the following code

    select ds,style,color
  8. Replies
    3
    Views
    13,266

    Re: Merge Datagrid Column Header

    This is what I have so far. Still looking to add some vertical margins.

    <Window x:Class="WpfApplication1.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    ...
  9. Replies
    3
    Views
    13,266

    Merge Datagrid Column Header

    Hi I am using WPF and I am trying to merge datagrid column headers.

    the columns on the datagrid is also autogenerated.

    What is the best way to accomplish this?

    here is a simple example of...
  10. Thread: datepicker event

    by ww99w
    Replies
    5
    Views
    7,525

    Re: datetimepicker event

    Thank you, "Calender closed" is a bit closer to what I'm looking for.

    I added if dtp.selected != null to negate some errors when the user first opens and closes without picking a date.

    However...
  11. Thread: datepicker event

    by ww99w
    Replies
    5
    Views
    7,525

    datepicker event

    The event I'm currently using for my datetimepicker dtp is the "value changed" event.

    However this does not fire when the user selects the same date again.

    Is there an event which also catching...
  12. Replies
    2
    Views
    572

    Re: working with enum

    Thank you for the reply jmcilhinney. I have posted the code Ive come up with below; maybe someone might find it useful down the road. I am using textboxes only because this is just a test run.

    ...
  13. Replies
    2
    Views
    572

    working with enum

    i have a list as an enum and when I want to select values as following, what is the best way to approach it

    Public Enum ScanLocations
    station1 = 1
    station2 = 2
    station3 = 3
    station4 = 4
    end...
  14. Replies
    1
    Views
    514

    changing labels from class

    I am trying to make a class which will take receive a form and then change the labels on said form.

    this is the class

    Public Class ScanClass
    Public Shared Sub UpdateScanHistory(ByVal frm1 As...
  15. Replies
    3
    Views
    564

    sql logic for counting production

    I am making a software for a manufacturing process.
    Each time an item exits a station it is scanned and the production count will increase by one.(0 +1 = 1)
    However if the item happens to have a...
  16. Replies
    3
    Views
    853

    VS 2005 Re: enter on textbox_change

    You want to use e.KeyChar. the Enter key is Chr(13)
    Not sure how you would do this without using keypress event though.

    Something like this

    Private Sub TextBox1_KeyPress(ByVal sender As...
  17. Replies
    1
    Views
    2,341

    Send Commands to Command prompt

    I am trying to send commands to Command prompt.

    The following code should open the text file I specified.

    However it opens several instances of the cmd window and also several copies of the...
  18. Replies
    7
    Views
    819

    VS 2010 Re: Help with nested for loops

    Ah I figured it out. Its because of the enveloping if then statement. If it was the last value of the DS, it wouldnt make a new line so it couldnt add the remaining entries. I changed the IF...
  19. Replies
    7
    Views
    819

    VS 2010 Re: Help with nested for loops

    What are you talking about? First you confirm I'm correct than you ask if I'm sure...

    and .Rows.Add() does add a row... that is exactly what the command says and does...
  20. Replies
    7
    Views
    819

    VS 2010 Re: Help with nested for loops

    Hey,
    The table.Rows.Count value does not change inside the for loop. It is only to define the terminating condition of the loop. The counter which changes is the CountDistinct***, and that is...
  21. Replies
    7
    Views
    819

    VS 2010 Re: Help with nested for loops

    I have also tried using Do While , Do Until loops. and with Loop while, loop until but they all only show 1 entry for the last value of the outermost loop.

    The only rough fix I have thought of is...
  22. Replies
    7
    Views
    819

    VS 2010 [RESOLVED] Help with nested for loops

    I am trying to code something with nested for loop with the following format:
    for .... 'For Loop 1'
    for .... 'Nested For Loop 2'
    for .... 'Nested For Loop 3'

    Next
    Next...
  23. Replies
    15
    Views
    25,776

    Re: print barcodes using printdocument

    Decided to draw it as an image. since i cant figure out the blasted drawing font problem.
    so just made a label, made it an image, and print the sucker

    Thank you all for your inputs.

    code below...
  24. Replies
    15
    Views
    25,776

    Re: print barcodes using printdocument

    Thank you for all your replies,

    @Wild_Bill My font has been installed. When I try your code, it doesn't throw the new exception.

    @yo_mismo I want to confirm that when you use the code you...
  25. Replies
    15
    Views
    25,776

    Re: print barcodes using printdocument

    gah i feared that i had to do it this way.

    How would one go about changing it to an image?
  26. Replies
    15
    Views
    25,776

    Re: print barcodes using printdocument

    Thank you for your reply.

    However this still outputs the print incorrectly:
    http://img710.imageshack.us/img710/7895/printbarcodebad.png

    where as in the label (what i want looks like this):...
  27. Replies
    15
    Views
    25,776

    print barcodes using printdocument

    I am trying to print a barcode
    I have successfully made the barcode in a label using a reference .dll file

    Imports BarCode
    TempLabel = New Label
    With TempLabel
    ...
  28. Replies
    1
    Views
    513

    VS 2010 Re: Help with loops and data type

    http://img714.imageshack.us/img714/9047/sql2.png

    http://img263.imageshack.us/img263/6229/sql1.png
  29. Thread: Function

    by ww99w
    Replies
    4
    Views
    801

    Re: Function

    That is a very bad name for a function...

    use something like this

    Private Function true_or_false(ByVal intNumber1 As Integer, ByVal intNumber2 As Integer) As Boolean
    If (intNumber1 >...
  30. Replies
    1
    Views
    513

    VS 2010 Help with loops and data type

    Hi I am trying to fill a datagridview with data from a SQL database.
    The dgv will print rows and values where each row is a different category.

    [VB CODE] Private Sub populatedgv1()
    ...
  31. Replies
    2
    Views
    637

    VS 2010 Re: Treeview from database

    For adding the nodes I have decided to use FOR loops.

    First I will use SELECT DISTINCT STYLE and put them in a temp_datatable.
    and then I will use a For each row loop on temp_datatable.

    and...
  32. Replies
    2
    Views
    637

    VS 2010 Re: Treeview from database

    I seem to have figured most of what I need to do. The one thing I am still having some trouble adding the nodes according the entries in the database.

    The database would look something like
    style...
  33. Replies
    2
    Views
    637

    VS 2010 Treeview from database

    I am trying to populate a treeview with information from a database.
    The data fields consists of Style#, Color, Size, Item#, etc.

    the tree view I would like to see would be something like this...
Results 1 to 33 of 34



Click Here to Expand Forum to Full Width