Search results for query: *

  1. bloukewer

    Determine directory of previously installed versions

    Is there any way to determine if and where previous versions of an application have been installed?
  2. bloukewer

    license key?

    Save the ENCRYPTED information in the registry. Use a PRIVATE function to encrypt or decrypt a string. Each time the user log on, check to see if variables is still the same (for example processor id). Finally I would recommend that you use dotfuscator to obscure your code (.Net programs can...
  3. bloukewer

    Data type mismatch in criteria expression

    OK, problem solved. Apparently it's just VB's way of telling me that the parameter's must be passed in the same order that it was specified in during the SP's creation.
  4. bloukewer

    Data type mismatch in criteria expression

    Nope. I tried passing the oledb data type through the oledbparameter constructor, but unfortunately this did not do the trick. I still get the same error message. I think Microsoft should hire me to do product testing. If there's a bug, I WILL stumble accross it.
  5. bloukewer

    Data type mismatch in criteria expression

    OK, thanks. I'll try that and post again if that doesn't solve the problem. Regarding Access: That is not the only possible bug I know of. When I copy a database (that contains stored procedures) from one computer to another, the stored procedures does not show (under queries) of the...
  6. bloukewer

    Data type mismatch in criteria expression

    Thanks, but this same error popped up on several more places. Now I am not sure anymore whether it is the "empty strings" causing this problem. I have been pulling my hair out about this because it has really been slowing down my progress. Another problem: when setting the input and display...
  7. bloukewer

    Data type mismatch in criteria expression

    OK, here follows the statement that creates the stored procedure. The stored procedure creates successfully and displays under queries: Here follows the procedure that passes the parameters through as an arraylist to the next procedure that executes the stored procedure: And here is the...
  8. bloukewer

    Data type mismatch in criteria expression

    Hi everyone. I get the error: "Data type mismatch in criteria expression", whenever I try to insert a record that contains an empty string value in one of it's fields. I'm using MS Access as the database, and I know the error is due to the fact that Access is very stronly typed. Is there a...
  9. bloukewer

    Using Arraylist/Collections as CR Source

    Hi everyone. I need to use arraylists as datasources for a few crysal reports. (These arraylists will be populated during run-time). I can not connect the crystal reports directly to the database or a dataset for that matter, because I am using multi-tier development. In other words, I have...
  10. bloukewer

    ADVANCED: Arraylist "accidentally" refers to null objects

    Nevermind, just one frikkin line (out of a few thousand) that I forgot. But I guess that's what happens when you work for 2.5 days without any sleep.
  11. bloukewer

    URGENT! Errormessage when setting datamember on datagrid.

    Nevermind, seems that a datagrid cannot bind properly to an arraylist that contains an object-hierarchy. Turns out I had to create viewer-classes and bind to them
  12. bloukewer

    Next/Last Autonumber in Access

    Does anyone know of a way to get the next "autonumber" ( or the last one that was created) in MSAccess using VB.Net? It would really save me a few hundred lines of programming. Thanx in advance.
  13. bloukewer

    ADVANCED: Arraylist "accidentally" refers to null objects

    I have a button which executes the following (pseudo) code when clicked: dim tmp as new employee tmp.Name = txtName.text tmp.Surname = txtSurname.text Arraylist1.add(tmp) ... 'do something that calls each element of Arraylist1 Now, the code executes perfectly the first time. The second time I...
  14. bloukewer

    Send email from vb.net

    You should look at Microsoft's 101 Code Samples, which also contains a example of how to create a program that can send e-mails. Look at www.msdn.com, under most popular developer downloads.
  15. bloukewer

    Finger Print matching classes required - OpenGl

    Yeah, sorry mate. I also need some fingerprint reader SDK's and I have been searching my butt of. Unfortunately, it seems that no-one were enthusiastic enough to create opensource/freeware fingerprint modules/SDK's or whatever. (BTW, my device did not provide any SDK's or dll's or COM's)...
  16. bloukewer

    A function to build and call a function

    While we are on the topic of weird functions... is there a way by which functions can be called through parameters? I know that when you start a new thread you need to pass a function as a constructor parameter. My question is: How do I do this with my own sub's or functions. (How do I create...
  17. bloukewer

    URGENT! Errormessage when setting datamember on datagrid.

    Hi guys. When binding a datagrid to an arraylist I receive a message that says: system.argumenterror - cannot create a child list for "EMPLOYEE". Usually i just say: datagrid.dataource = arraylistname datagrid.datamember = nameOfAListElementsType I've tried the setdatabinding equivalent but...
  18. bloukewer

    Problems Refreshing Grid

    Maybe you should try providing more info...
  19. bloukewer

    About fingerprint scanners,pdf and e-mails

    Firstly, do anyone know of good tutorials/source code for programming a fingerprint scanner in vb.net? I'm also looking for advice/tutorials/source code on generating e-mails. Lastly, is it possible to convert crystal reports and word documents to pdf? If yes, then how? Again, source code or...
  20. bloukewer

    toolbar background color.....

    Well, for a newbie the easiest way would be to "cheat". Take a panel, slap a few buttons on, fiddle a little with the buttons' and panel's attributes... If your looking for something fancy you should firstly familiarize yourself with OO programming and control creation in VS.Net.
Back
Top