I have seen Vault in action before and it can do selection based OCR and allocate different file tags off this information.
The demonstration I saw had it set up to sort invoices by customer name. It could probably do what you are asking for.
http://www.onstreamsys tems.com/default.asp?dat a_article=185
User Profile
Collapse
-
I think the idea would be to take that hierarchy further back. Sure cat and dog inherit from feline and canine but feline and canine can have similarities. They could inherit from a mammal class which could in-turn inherit from an animal class which could contain the eat method.
A google search for polymorphism and inheritance in OOP will get you started.Leave a comment:
-
Sorry, I should have said that. Shashi is right. You are going to need to change your path(s) to a relative one. ..\Config.txt or something. Actually, useCode:Application.StartupPath + @"\config.txt"
Leave a comment:
-
Hey.
Just add the config file into the Application folder in the installer.Leave a comment:
-
I'm not entirely sure but I assume that directory.exist s times out which is when the false return is generated. I am away from VS at the moment so I can't check but have a look if there is anyway to set this timer lower.
Alternatively, you could declare your own timer, then call Directory.Exist s and check it's return value after whatever time period you think is appropriate. If it is not true then you could pretty safely assume that it isn't...Leave a comment:
-
I had a look on MSDN and it does list system.windows. documents as the correct namespace. I don't have .net 3 so I can't check myself sorry.Leave a comment:
-
Actually, it sounds a little bit like you are talking about a combo box. To insert a value into a combo box just type in:
Code:comboBoxName.text.insert(indexNumber, textToBeInserted);
Leave a comment:
-
Hey, I am not really sure what you mean in the second part of your post but to add an entry to a listbox all you have to do is go -
Code:listboxName.Items.Add("Your text here");
Oh, and if you are wanting to get the value that was selected use something like this:
Create a SelectedIndexCh anged event on the listbox then use
Code:string entrySelected = (string)listB
Leave a comment:
-
Hey.
If you are calling a method from another class (or form) and want to pass a value for this method to use you would need to create an instance of the second from on the first form, then call the method and pass it the required values.
FormName fn= new FormName()
fn.methodName(value )
You would need to declare the variable required as a parameter of that method.
methodName(int...Leave a comment:
-
Hey. I have had to do a few of these things in the project I am working on at the moment and they can get a little confusing. Google really comes in handy though http://www.developerfusion.co.uk/show/4359/ for example.
You should be able to use this to get started. Also, it is probably worth thinking about subfolders too as they can be a bit of a hassle. Well, for me and my limited experience anyway.
Good luck....Leave a comment:
-
Under the properties of the shortcut you created there should be an icon field. Browse to the icon and that should do it.
Hope that is what you mean....Leave a comment:
-
Is it just showing the extra \ in the debugger or is it actually outputting these extra slashes?
If it is the former then there is nothing to worry about and it is just putting them in so that the compiler doesn't look at the escape characters in XML.
An easy way to check would be displaying the return in the command line.
Hope this is some help.Leave a comment:
No activity results to display
Show More
Leave a comment: