CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: dammansky

Page 1 of 6 1 2 3 4

Search: Search took 0.12 seconds.

  1. Replies
    1
    Views
    12,117

    NotifyPropertyChanged VS DependencyObjects

    Hi, i'm a WPF newbie. I'm trying to learn it as a matter of fact :-)

    If you have binding between a textbox.text and the name property of your employee class, then you have to add code if you want...
  2. trapping the keyleft and keyright in a flexgrid

    Hi,

    I have a form with several controls on it, one of them a msFlexgrid.
    This flexgrid contains 7 columns (each column shows a day feg: 19/02 20/02 21/02 22/02 23/02 24/02 25/02
    )...
  3. trapping the keyleft and keyright in a flexgrid

    Hi,

    I have a form with several controls on it, one of them a msFlexgrid.
    This flexgrid contains 7 columns (each column shows a day feg: 19/02 20/02 21/02 22/02 23/02 24/02 25/02
    )...
  4. Replies
    2
    Views
    1,913

    day planner control

    The control i would like is this:

    on the screen you see different days divided in quarters of an hour. Per quarter i want people to be able to type something. It should also be able to type...
  5. Replies
    2
    Views
    1,913

    Make a day planner control

    Hi,

    I need to make an application where the user can type texts per quarter of an hour. Is there any control that supports that? or any existing project where I can start from?
  6. Creating activex controls beginner question

    Hi,

    I am experimenting with creating activex controls. To test this i want to create a control that is based on a flexgrid, with a textbox so u can edit the flex.

    I was able to create this...
  7. Thread: Sql 7

    by dammansky
    Replies
    1
    Views
    655

    www.dbforums.com I dont find it that good, but...

    www.dbforums.com

    I dont find it that good, but it is the only one i know for SQL server (otherwise u could also try www.technet.com).
  8. exporting a report in Access to Word or HTML

    Hi,

    I have a program that prints out reports from Access (The reports are made 1 time, in my program i change the query each time a print out is asked). Does anybody know how i can get this...
  9. Ok, i found a different way to do this, did not...

    Ok, i found a different way to do this, did not know that the mod function did'nt allow figures larger than long.

    Thanx for youre help
  10. The code is not realy special. it's a small...

    The code is not realy special. it's a small program that checks a banking number. So if a user enters the number 833-4514319-03 the program has to say if the code is correct (if you divide the first...
  11. Numbers that are larger then 2147483647 always get a # in my code

    Hi,

    When i type numbers that are larger then 2147483647(The long limit) ther always appears a # sign, why is that and how can i get this away. I would like to do this simple code:
    msgbox...
  12. Re: I still have Type mistmatch error. Please once more!

    I don't know what could be wrong, but what you could do is add this line bevore you open the wordfile:
    msgbox selectedfile, this way you can see if there is something wrong with selectedfile.

    But...
  13. Re: variable vs "text"; How can I put the variable of "xxx" instead of "xxx", if "xxx" must be "xxx"

    i think this should do the thrick:


    w.Documents.Open FileName=SelectedFile, ConfirmConversions:=False, ReadOnly _
    :=False, AddToRecentFiles:=False, PasswordDocument:="", _
    PasswordTemplate:="",...
  14. MShflexgrid set colwidth so you can see the whole cell content

    Hi,

    How can one set the width so you can see the entire text that is in it in a mshflexgrid (like you have autofit selection in excel)?

    Thanx
  15. Replies
    2
    Views
    970

    DAO password protected Access database

    Hi,

    how can i connect to an Access database that has a password on it

    When i use opendatabase("<Mypath>",,,"pwd=<MyPassword>") it says that my password is incorrect (and i'm sure it is not.
    ...
  16. Re: connecting to password protected Access table

    Here is the way to connect to A password protected Access Database:

    Dim cn as new ADODB.Connection
    Dim Rs as new ADODB.Recordset
    cn.Provider = "Microsoft.Jet.OLEDB.3.51"
    cn.Properties("Data...
  17. Disabling the selection of multiple rows in MSHFlexgrid

    Hi,

    I have a flex grid where my selectionmode is by column. But they are able to select(=highlight) multiple columns at once. I would like that if multiple columns are selected, that only the...
  18. Getting information from 2 databases (Speed)

    Hi,

    I have the following problem: I need to fill a flexgrid that is built up from 2 databases.

    First i search in an Oracle database after records that match a criteria , and then i have to look...
  19. Replies
    1
    Views
    523

    is an access table open??

    hi,

    i have a program that uses an access database. it could be that 2 users are in the database.
    Is there a way to check if a table is in use (so table, not database) by another user??

    thanx
  20. Replies
    0
    Views
    644

    A good Oracle Forum

    Hi,

    i am new with oracle administrating, so i'm looking for a forum that will help me concerning sqlplus commands, tables, security and stuff like that.


    Thanx in advance
  21. Replies
    3
    Views
    599

    Re: ODBC for Oracle

    amai wi, oj da nog nie wit!!!
  22. Replies
    2
    Views
    851

    executing command on AS/400

    Hi,

    is there a way to execute a command on AS/400 with VB??

    Thanx
  23. Thread: Zip with Vb

    by dammansky
    Replies
    13
    Views
    2,029

    Re: Zip with Vb

    private Sub Zip_File(Src as string, trgt as string)
    zipIT = "c:\program files\winzip\winzip32 -a "
    unzipIT = "c:\program files\winzip\winzip32 -e "
    Shell (zipIT & Chr(34) & trgt & Chr(34) & " " &...
  24. Replies
    3
    Views
    692

    Re: Visual basic scripts

    Thanx for youre reply. I have a few other questions:

    1) How do you link a script to something like a button? (i'm using frontpage)
    2) can i first create my script with VB and then intigrate it in...
  25. Replies
    3
    Views
    692

    Visual basic scripts

    hi,

    i'm already pretty familiar with VB. Now i would like to make a web site which makes connection to SQL7. I would like to do this with VB Script. The site would be on an IIS server. i have no...
Results 1 to 25 of 146
Page 1 of 6 1 2 3 4





Click Here to Expand Forum to Full Width

Featured