Search results

  1. 9

    Exposing Functions to COM in VB.NET

    I am trying to expose subs and functions from a DLL written in VB.net to COM to be used by a PointOfSale system that uses COM. Anyone have any ideas? My dll is already strongly named using the SN.exe tool. Any help would be appreciated. Thank you.
  2. 9

    reading resx files for form texts

    I have some sample code that works great but I am confused. The only examples I have found anywhere read a file and loop through it. I need to grab individual items by a tag name to place it where I need it. Is there a way to do this? Public Sub ReadResourceFile() Dim myResEnum...
  3. 9

    Error Catch outside of a sub

    I searched and found nothing helpful so I thought I would ask. I have a form that uses the System.Reflection class to get the version number of a number of my dependency files. The problem is that is one is missing (multi use app, some files not needed when installed in some modes) the whole...
  4. 9

    Batch Data Transfer

    I have a PPC app that I am transferring about 300 records from an SQL connection to my SQLCE database. Currently I am filling a datareader, doing the following. Do while sqlDR.read 'Write record to sqlCE database. loop This is painfully slow but it works, I do not want to do anything fancy...
  5. 9

    Fill a combobox from a database on the fly

    I did a search and found nothing, I am designing a handheld app that loads about 300 or so records to a combobox from a SQLCE database, as you can guess it's kinda slow. What I would love to do is be able to fill the combobox with data as I type letters. I know there was a way to do it with a...
Back
Top