Search results for query: *

  1. 95se5m

    Database Schema Comparison

    Anyone? Please....
  2. 95se5m

    Database Schema Comparison

    Hello all. I am using Sql Compact Edition for a small standalone application, I create and build the initial database schema on the initial startup of the application. What I am looking for is a way to upgrade the software and on initial startup of the new version, I would like it to compare...
  3. 95se5m

    Config Data Storage

    Well, problem solved. I am using the Sql Compact Engine, a couple embeded dlls and all is well.
  4. 95se5m

    Config Data Storage

    I am not looking for a how-to on the data, I already know what I need to do with the data. I have the data plan layed out, I am just looking for the best option to locally store it. I am looking for a small footprint data storage option for my data at the home office. The "totals" data is...
  5. 95se5m

    Config Data Storage

    I am guessing I did not explain myself enough. I currently have all my data being stored on the 1 database at the location the software is installed at. it's a Point of sales database. I want to go multi-store. I need somewhere to store the common data, while leaving the site specific data...
  6. 95se5m

    Config Data Storage

    Hello all, I have a delema that requires local data storage. I have an application currently that connects to a sybase database through ODBC and extracts data. Currently when I connect to the file I store my information in the database I am connecting to. Now, I am looking to move this to a...
  7. 95se5m

    Help in translation

    Well, you are right in the eye of the beholder, I prefer vb just because it's what I know, and I don't mind the minor differences. BTW we have string.substring as well. :p Anyway, the converter I used was http://www.kamalpatel.net/ConvertCSharp2VB.aspx if you know of a better one I am all...
  8. 95se5m

    Help in translation

    Not so much actually, the original code string you are looking at was what the converter spit out, the syntax is actually less attractive in C#.
  9. 95se5m

    Help in translation

    Wouldn't you know, 5 minutes after posting this I finally found my answer on some obscure web site toting information about a how to book. AddHandler m_AutoRotateTimer.Elapsed, AddressOf IncrementTransisionSegment This is the equivilant code, and after a few adjustments, it works like a...
  10. 95se5m

    Help in translation

    I have a bit of code. If Value = True And m_AutoRotateTimer Is Nothing Then m_AutoRotateTimer = New System.Timers.Timer(m_IncrementFrequency) m_AutoRotateTimer.Elapsed += New System.Timers.ElapsedEventHandler(AddressOf IncrementTransisionSegment) m_AutoRotateTimer.Start() End If In VB.net...
  11. 95se5m

    Threading shared functions

    :mad: I am running into a threading nightmare. I have a DLL of shared utilities so to speak, my own messagedialog, progress dialog, and so on. Here's my problem. If any of my dialog boxes are on the screen everything behind stops dead. In the past I would have used a thread for the dialog...
  12. 95se5m

    Data Transfer between databases using ADO.net

    Sorry, it's the system.Data.SqlClient.SqlBulkCopy class in .NET 2.0. Should have been more descriptive.
  13. 95se5m

    Data Transfer between databases using ADO.net

    I actually used the BulkSql class in .NET 2.0 and using a datareader to Sybase and a dataconnection to the sql database it transferred flawlessly. This was a modified example supplied by the msdn site for use of the bulksql class.
  14. 95se5m

    Data Transfer between databases using ADO.net

    Hello all, here my dilemma. I have a Sybase SqlAnywhere database that stores the data. It has a number of views that assemble the data in the fashion I need. Now I need to transfer that data in my application to an MSSQL database into a table with an identical structure to the view. I do...
  15. 95se5m

    Version Trigger for code

    This is what I found, it works like a champ, it ajusts the version build number whenever a change is made to the code. http://www.codeproject.com/dotnet/versioningcontrolledbuild.asp Just thought I would share, it's a great add-in.
  16. 95se5m

    Magically missing quotation mark

    Here's an odd one, maybe someone could shed some light on this for me. I am saving a database username and password to the registry using a cryptogtaphy library. It saves fine, when it returns the value, I feed it into a string variable, say the username is the word "custom". When it feeds...
  17. 95se5m

    Version Trigger for code

    Close I think, I am looking into it now to see if the code can be changed to modify the assembly file before the compile.
  18. 95se5m

    Version Trigger for code

    Hello all, I am working on an application and am having trouble keeping track of version numbers. Here's the deal. When you use wild cards, it creates a build based on time and date, I need to keep a running numeric value. In my database I created a database trigger that whenever I change...
  19. 95se5m

    Assigning default value to an array

    Never mind... The answer is this. dim arySomeArray as String() = {""} this sets the default value of at least the first object in the array to nothing.
  20. 95se5m

    Assigning default value to an array

    How do you assign a default value to an array when defining the array variable? Eg. Dim arySomething as String() = "" Obviously this does not work. However in VB.NET 2005 beta 1 which I am using to make sure my apps will be complient with VB.NET 2005 when it is released, it states the...
Back
Top