If you could give us a visual example of the data that would be very helpful!
Type: Posts; User: Crzyrio
If you could give us a visual example of the data that would be very helpful!
What he said ^
+ If you want, you can add a 'NotifyIcon' and have the application show up in the system tray beside the date :)
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
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...
[
Dim newbuilder As New System.Text.StringBuilder
If minimumValue.Count < 10 Then
newbuilder.Append("0", 10 - minimumValue.Count)
...
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...
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
...
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 =...
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.
Even when it is set to something it is the same problem.
EDIT: Silly me, forgot to make the Module public :P
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...
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...
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...
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...
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...
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 =...
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...
Thanks!! Worked perfectly.
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....
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)
...
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...
Private Sub dataGridView1_CellEndEdit(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles dataGridView1.CellEndEdit
'Code Here
End Sub
That should...
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...
Since you are just hiding the first form, you should be able to simply do this in form2
Form1.App_List.CheckedItems
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...
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...
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?
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.
...
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)
...
Hey,
THanks for all the help!
Just a few clarifications. What does this doo --> Me.TableLayoutPanel1.Handle)
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...
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...
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?
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...
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. ...
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...
Fair enough, did not know there was this option -- "alternating row default cell style."
thanks :)
Thank You and Thank You
Exactly what I Was looking for :)
EDIT: This is completely throwing of my graphic paths though :\
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...
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...