Search results for query: *

  • Users: 95se5m
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 95se5m

    Questions that are 2005 Beta 1 related.

    Lo all, I am not sure if I am posting this in the right spot, but I will ask anyway. I am playing with VB.NET 2005 Beta 1 Couple things I need help with. One. Does anyone know if it is normal for the cursor to vanish while in the code environment? Is it a feture I can turn off? Two. I...
Back
Top