Search:

Type: Posts; User: Crzyrio

Page 1 of 4 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    353

    Re: script to find a line in excel

    If you could give us a visual example of the data that would be very helpful!
  2. Replies
    2
    Views
    104

    VS 2010 Re: How do I hide EXE but keep the form open?

    What he said ^

    + If you want, you can add a 'NotifyIcon' and have the application show up in the system tray beside the date :)
  3. Re: Sorting data in a combobox using the underlying data model

    What it means is you have to sort your Access database and the combo box will automatically sort itself.

    I will see if I can add a bit more info in a bit
  4. Re: Users getting an error when starting my application

    I would suggest using Process Monitor ---> http://technet.microsoft.com/en-ca/sysinternals/bb896645.aspx

    Filter the list to show only your application. Then when you start your application you...
  5. VS 2012 Re: Remove decimal place (not saving variable as int)

    [

    Dim newbuilder As New System.Text.StringBuilder

    If minimumValue.Count < 10 Then
    newbuilder.Append("0", 10 - minimumValue.Count)
    ...
  6. VS 2012 Re: Remove decimal place (not saving variable as int)

    Take a look at this and see if it makes sense

    Imports System.Text

    Public Class Form1
    Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles...
  7. VS 2012 Re: Remove decimal place (not saving variable as int)

    For the 0's you can also use the string builder, it is actually quiet usefull.


    Dim x As String = "999"
    Dim newbuilder As New StringBuilder

    If x.Count < 10 Then
    ...
  8. VS 2012 Re: Remove decimal place (not saving variable as int)

    Someone on here, gave this to me a little while back. I am sure you will find some use of it :)

    Function GetNumber(ByVal theString As String) As String
    Dim sa() As Char =...
  9. Replies
    4
    Views
    140

    VS 02/03 Re: Using Callbacks

    Thank You very much :) Changing it to public solved the problem and I did not know they defaulted to Friend in vb!

    Call backs are an interesting tool.
  10. Replies
    4
    Views
    140

    VS 02/03 Re: Using Callbacks

    Even when it is set to something it is the same problem.
    EDIT: Silly me, forgot to make the Module public :P
  11. Replies
    4
    Views
    140

    VS 02/03 [RESOLVED] Using Callbacks

    Hi,

    I hope no one minds, but I figured I would create a new thread since my topic and question changed in my previous one.

    I am not working with Callbacks and still very unsure of how they...
  12. Re: Unable to Create Hook - SendKeys.Send Widnows 7

    I know but was wondering if there is a way to put it in? We usually do use 2010 or 2012 for development, but this application was created quiet some time back and is fairly large. We would much...
  13. [RESOLVED] Unable to Create Hook - SendKeys.Send Widnows 7

    Hey

    I have a Framework 1.1 Application that needs to be run in Windows 7. The application uses quiet a few SendKeys.Send, which causes the following error to occur

    ************** Exception Text...
  14. Replies
    5
    Views
    192

    VS 2012 Re: Progressbar for generating hash

    A Progress bar would be your 2nd step, first look into using a Background Worker so your UI thread is free.

    What is happening right now is your generating your Hash on the same thread as what your...
  15. Replies
    7
    Views
    197

    Re: Linq to Xml sorting

    Sorry about that , forgot to change it.

    But with the Signal, I have times have signals that are GND and not numeric values, how would this work then?

    Dim wiredatas = From n In...
  16. Replies
    7
    Views
    197

    Re: Linq to Xml sorting

    The only thing is, some of the wires are "AWG 2/0"

    Will put together a quick function that gets just the numeric values I suppose! GOnna try it thanks!

    EDIT: Really Close!

    Dim wiredatas =...
  17. Replies
    7
    Views
    197

    Linq to Xml sorting

    Hey,

    I am attempting to sort an xml file by 2 variables the Signal name and the Size, here is what I have tried so far

    Dim wiredatas = From n In doc.<Data>.<WireData>.<Signal_Name> Order By...
  18. Re: Passing an arguemtn to a new process with spaces

    Thanks!! Worked perfectly.
  19. Re: I need help with combo boxes in vb :o please help

    How well versed are you in programming?

    Your application might be a little more complicated than you think it is. I would suggest using something like an xml file to store your different recipes....
  20. [RESOLVED] Passing an arguemtn to a new process with spaces

    Hey,

    I have run into an interesting problem today and not sure how to work around it.


    In my program I use the Process.Start Method (String, String)
    ...
  21. Replies
    21
    Views
    401

    Re: Automating Programs

    Sorry for the late reply but since my start down this road, there was a set of new drivers released for the printer that give me what I need in order to use it.

    So no need for automating anything...
  22. VS 2008 Re: Don't hit me - How to get a general DataRow.EndEdit event

    Private Sub dataGridView1_CellEndEdit(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles dataGridView1.CellEndEdit
    'Code Here
    End Sub



    That should...
  23. VS 2010 Re: Passing checked items/process to other form

    it is because of this line

    Dim p As New System.Diagnostics.Process
    p = App.SubItems(3).Text

    You are saying that your process is = to a line of text. What are you...
  24. VS 2010 Re: Passing checked items/process to other form

    Since you are just hiding the first form, you should be able to simply do this in form2



    Form1.App_List.CheckedItems
  25. Replies
    21
    Views
    401

    Re: Automating Programs

    Thanks! Just downloaded it will give it a try.



    If that is the case, then I will keep trying. Here is what the main menu looks like, fairly normal. Even in spyxx nothing shows up under this...
  26. Replies
    21
    Views
    401

    Re: Automating Programs

    Thanks.
    I am playing around with it in notepad and it seems to work, it is quiet cool :P

    But in the program I want to use it with, both GetMenu and GetMenuitemID return 0, does that mean the...
  27. VS 2010 Re: Passing checked items/process to other form

    What exactly do you want to pass?

    Your list view contains check boxes, and for every box checked you want to pass what is contained in those rows?
  28. VS 2010 Re: Passing checked items/process to other form

    You can specify which sub item it is by the name of the colum like so

    ListView1.Items(3).SubItems("Name of colum")

    So in that case it will return the value of the column specified of item 3.
    ...
  29. Replies
    21
    Views
    401

    Re: Automating Programs

    Did this: and the program shows up in my panel now. Perty cool :P
    SetParent(psi.MainWindowHandle, Panel1.Handle)

    SendMessage(psi.MainWindowHandle, WM_SYSCOMMAND, SC_MAXIMIZE, 0)
    ...
  30. Replies
    21
    Views
    401

    Re: Automating Programs

    Hey,

    THanks for all the help!

    Just a few clarifications. What does this doo --> Me.TableLayoutPanel1.Handle)
  31. Replies
    21
    Views
    401

    Re: Automating Programs

    Thank for the help!

    I am thinking I will have to use something like PostMessage(http://msdn.microsoft.com/en-us/library/windows/desktop/ms644944%28v=vs.85%29.aspx) or...
  32. Replies
    21
    Views
    401

    Re: Automating Programs

    99851

    I know this is unconventional but is it at all possible to send a file straight to the printer driver and have it deal with the file?


    I need to send this file to the printer but It...
  33. Replies
    21
    Views
    401

    Re: Automating Programs

    What if it is not a regular format? It is a 3rd party program with a non standard extension.
    How would I specific what program to open?
  34. VS 2010 Re: Passing checked items/process to other form

    No not at all, I am saying use my code and place it into your so you can pass the status of your chk boxes to your other form.
    Although I feel like I mis understood your question

    My...
  35. VS 2010 Re: Passing checked items/process to other form

    Just a suggestion, there could be other ways. But I had a similar problem last time and was recommended something like this.

    Create a module with a class of booleans for each install checkbox. ...
  36. Replies
    21
    Views
    401

    Automating Programs

    Hey,

    I am trying to get a hold of another application and simply send the print command. But this seems to be hard than I thought it was.

    I know there is the automation name space, but I cant...
  37. Replies
    7
    Views
    188

    Re: DatatGridView Advanced Styling

    Fair enough, did not know there was this option -- "alternating row default cell style."

    thanks :)
  38. Re: Scale Graphics to Image or create custom co-ordinates?

    Thank You and Thank You

    Exactly what I Was looking for :)


    EDIT: This is completely throwing of my graphic paths though :\
  39. Replies
    7
    Views
    188

    Re: DatatGridView Advanced Styling

    EDIT: dunfiddlin's post below is the right way and much more effective than this :)


    Here is what I would do for the background color




    Dim...
  40. [RESOLVED] Scale Graphics to Image or create custom co-ordinates?

    Hey,

    I am currently working on drawing out wire diagrams , I get all the co-ordinates from another program and simply draw them out in a picture box.

    Private Sub test(Optional mark As...
Results 1 to 40 of 148
Page 1 of 4 1 2 3 4