Search results for query: *

  • Users: Cavar
  • Order by date
  1. C

    Embedded database

    You can try one of the following: SQL Server Compact VistaDB Personally I like VistaDB better. Cavar
  2. C

    Replacement Plan Program

    You know, I started to do a Select Case similar to that, but I couldn't remember the format and was trying Case 0 - 45, which obviously won't work becase 0 - 45 is -45. Besides, F1 is too work to press since I am super lazy. ;) Plus I've been doing C# for so long now and have become accustomed...
  3. C

    Replacement Plan Program

    See if the attached is close to what you need. I put some value in the app.config file, which would allow you easily change the multipliers. You could also do something similar with your point ranges. Things to note: 1. Your screenshot had a Years Phased Out field, but your message indicated...
  4. C

    Tip Translation to ADO.NET

    This should get you close enough to make any changes and do what you want to do: Public Sub RecordSetTemplate() Me.Cursor = Cursors.WaitCursor Try Using conn As New SqlConnection("connection string here") conn.Open() Using cmd As New...
  5. C

    how to disable all breakpoints in VB 2008 ?

    You can also create a shortcut key combo for it if you like by clicking the "Keyboard" button on the same dialog displayed by "Tools / Customize / Command / choose category Debug". But, the button may be easier to use. CT
  6. C

    Question add a letter to the end of an sentence in string

    You could do something like and just replace the space with what ever character you want to put on the end. textbox1.Text = IIf((textbox1.Text.Length Mod 2) = 0,textbox1.Text,String.Format("{0} ", textbox1.Text))
  7. C

    Compatible Databases

    It does have VS 2005/2008 Server Explorer Integration and they'll be adding LINQ Entity Framework support at some point, if you're into that sort of thing. CT
  8. C

    Compatible Databases

    Sorry, I meant SQL Server Compact Edition. VistaDB can be used on WinXP and Vista. Personally I like VistaDB, but SQL Server Compact Edition is free, so you can't beat the price. Here's a comparison between the two products. CT
  9. C

    Compatible Databases

    I use VistaDB and Micorosft SQL Server Mobile. CT
  10. C

    Question Quality WPF / .NET code editor?

    How about Actipro SyntaxEditor - Windows Forms .NET Control ? It may not meet all your needs, but it will probably meet 99% of them. CT
  11. C

    Question Problem with automatic update

    Any company that is that concerned about internet access should have a Firewall and would be using its built in monitoring instead if writing their own application that wouldn't monitor as much? And if people are going to websites they should be going to, then block it with the Firewall. CT
  12. C

    What company is good?

    Telerik and Developer Express both offer nice AJAX enabled ASP.NET controls.
  13. C

    Recommend FTP Control ?

    Chilkat makes nice components and we've used several at work. If you think you might need SFTP, FTP FTPS, etc. I'd recommend Rebex. CT
  14. C

    Record Filtering/Selecting Data Access Layer

    So, I've been reading up on creating a n-tier application and understand some of the basics such as selecting, saving and deleting data via custom business objects. All of the samples I have found so far select data using something similar to the following in the Business Logic Layer: Public...
  15. C

    How to limit other user not to use the same record?

    Or you could do concurrency checking by adding a timestamp column to each row. This column would have a default value of getdate() for when new rows are added and you would update it when you save your data. So, when you query your record for editing you'll have the last time it was updated...
  16. C

    Trim not working any other suggestions?

    You can try to replace the line feed character using the following: yourString = yourString.Replace(Environment.NewLine, String.Empty) CT
  17. C

    Trim not working any other suggestions?

    Try yourstring.Substring(0, 2). You'll need to ensure that your string is at least 2 charracters though or it'll throw an exception. CT
  18. C

    LINQ Samples

    Linq to SQL Tutorials I found this excellent set of Linq to SQL tutorials today by Microsoft's Scott Guthrie combined into a 118 page PDF document. CT
  19. C

    How to get length of a song?

    Usually the song duration is stored in the file, not as the file size. There are various methods for getting the duration depending on file type, .mp3, .ogg, .wma, so we can't tell you which method you need without more info. CT
  20. C

    Problems reading Visual FoxPro table

    It turns out it's not even a FoxPro issue, since FoxPro doesn't even recognize the file as a FoxPro table. Thanks anyway. CT
Back
Top