Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by MaxZak

  1. MaxZak

    Update DataTable when data changes in DB

    If I add a middle tier, how can clients be notified of data changing? Do I have to use remoting? Thanks again
  2. MaxZak

    Update DataTable when data changes in DB

    I have 2 applications in 2 different PC that use the same DB. I want that changes made by an app become immediately visible in the other (in the DataTable changed). I'd like to do that without use of timers that would create network traffic and would introduce a delay on the visualization of the...
  3. MaxZak

    Performing a Bitwise comparison in an Access Query

    I'm sorry... I've seen your post today because I need to do the same thing... No, U don't have to go through a VB Function, your query should be something like: SELECT ... FROM ... WHERE (flagFld BAND 2) > 0 and it will return all the record that have the 2nd bit set in the field flagFld. I...
  4. MaxZak

    Performing a Bitwise comparison in an Access Query

    you have to change the database options to make it compatible with ANSI92 syntax, then you can use BOR and BAND operators
  5. MaxZak

    DataBinding problem

    I have some problems with databindings in textboxes: - I've bound the "Text" property to a specific field of a dataTable, and I'm able to read the correct calue - When I change the value from the UI, I'm able to save the DataRow (with "AcceptChanges") - When I change the "Text" property from...
  6. MaxZak

    sending e.mail

    ok, I know that I have to use the System.Web.Mail.SmtpMail class, but I've read from http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwebmailsmtpmailclasstopic.asp: Requirements Namespace: System.Web.Mail Platforms: Windows 2000, Windows XP Professional...
  7. MaxZak

    Tracing problem

    ok, I've found... it was due to one of the components that I use Bye, Max
  8. MaxZak

    Tracing problem

    I've got a problem with VB.NET application tracing: together with my tracing messages I see in my output (file or debug window) a lot of rows with only a nu,ber (1, 2, 3, ...) What that means? Is there a way to remove it? Thanks, Max
  9. MaxZak

    ListView

    I have a ListView with MultiSelect=True, how can I know witch Item has been clicked, without looping on each Item? I need to process only the last clicked Item, but the "Click" event doesn't tell me anithing about the clicked Item. I don't want to use the checks (in this case I would...
  10. MaxZak

    My Access app slowed down

    Ok, I've found it: I've just created a new mdb app with Access 2000, imported all Forms, Reports, etc. and it works faster (2-3 times) It's courious that the new Access 2000 app (compacted) isn't the same size of the Access XP app (compacted)... the 2 files aren't equal!
  11. MaxZak

    My Access app slowed down

    I've had a problem with an application written in Access 2k that has 1 hundred of linked table, about 1 hundred of Forms, 20 Reports and 30 Queries. I've added some forms to that app, and I've noticed that it slowed down very mutch. As I've modified it with Access XP, I'm asking if the new file...
  12. MaxZak

    Accessing OLAP cube

    Is there a way in .NET to query an OLAP cube? Something like the old ADO MD? Or, better, is there a tool to display a cube into a WinForm (a pivot table, or something similar)? Thanks.
  13. MaxZak

    me.refresh problem

    I think U have to use threads: create a new thread and open the new form within that thread. MaxZak
  14. MaxZak

    Exclude a form from the MDIList

    How can I exclude a MDI child form from the menu list (the MenuItem with MDIList set to true)? Thanks
  15. MaxZak

    Graphics to Image

    Tank you, now is clear and... it works!!!

Part and Inventory Search

Back
Top