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

Search:

Type: Posts; User: ozzy66

Page 1 of 6 1 2 3 4

Search: Search took 0.05 seconds.

  1. Export SQL Database programmatically for local use

    Hi,

    what's the best way to export SQL Server Data and use it in an application?

    I've got to create an exe which runs on SQL data without being connected to the original database. But there has...
  2. Replies
    2
    Views
    2,636

    Re: How to add two DataTables to one another?

    http://msdn.microsoft.com/us-en/library/fk68ew7b(v=vs.80).aspx
  3. Replies
    7
    Views
    5,160

    Re: Problem getting 'alt' key from user

    Doesn't the EventArgs of the keyPress event handler give the answer like



    private void Form1_KeyDown(object sender, KeyEventArgs e)
    {
    if (e.Alt && e.KeyCode.ToString() == "F")
    {
    ...
  4. Replies
    2
    Views
    37,204

    Re: Using Windows Task Scheduler with C#

    I ve made good experiences using the

    Microsoft.Win32.TaskScheduler.dll

    then u can easily build tasks like



    TaskService ts = new TaskService();
    TaskDefinition td = ts.NewTask();
  5. Replies
    1
    Views
    600

    Re: Save all control values

    the list of controls of a form is given in

    Form.Controls

    So just loop it and then extract and save the values.
    I'd rather use a xml output than a text file. Or if u dont save the values for...
  6. Replies
    1
    Views
    644

    Re: Listview question

    http://social.msdn.microsoft.com/Forums/en-US/winforms/thread/1a19bf76-3452-408f-8b0c-738594e9b00c/
  7. Replies
    2
    Views
    1,190

    Re: pdf document from windows form output?

    seems to be a report viewer like... ehm... Report Viewer :blush: to build up the page and bind the controls manually to the output
  8. Replies
    2
    Views
    1,190

    pdf document from windows form output?

    Hiya peeps!

    I wonder which is the best way to create a pdf file from the output of a windows form application.
    In my case it would be an application which calculates costs on several input...
  9. Re: suppress On_CBN_SelChange on VC++ 6.0

    Yes, thanks, indeed.

    a simple and obviously all case working solution is
    1. to catch the event in the PreTranslateMessage
    2. disable the combobox
    3. call ::TranslateMessage() and...
  10. [RESOLVED] suppress On_CBN_SelChange on VC++ 6.0

    Hi there,

    I need to change an elder application written in 6.0.
    There is to suppress the event handler which opens the combobox list (due to a flag saying that the combobox is locked for user...
  11. Thread: Checked - true

    by ozzy66
    Replies
    7
    Views
    1,459

    Re: Checked - true

    if(checked == true)

    or simply better

    if(checked)
  12. Thread: To Be certified

    by ozzy66
    Replies
    15
    Views
    2,560

    Re: To Be certified

    honestly confirmed that I never would :D but on the other hand any smiley is a secret message, isn't it? :D
  13. Thread: To Be certified

    by ozzy66
    Replies
    15
    Views
    2,560

    Re: To Be certified

    yes, i totally agree with your statements Jonny

    and perhaps the missing post-calculation in modern business management. To calculate costs afterwards is almost banned from controlling - at least...
  14. Thread: To Be certified

    by ozzy66
    Replies
    15
    Views
    2,560

    Re: To Be certified

    talking about software projects and if u mean for years: no, these times are definitely over. Employers are furthermore looking for the cheapest and most appropriate service for a task. If there will...
  15. Thread: To Be certified

    by ozzy66
    Replies
    15
    Views
    2,560

    Re: To Be certified

    it depends, there are job advertisements where such a certificate is precondition - but fortunately only few, probably due to an addiction to superintendence of the personnel manager :D
  16. Replies
    3
    Views
    1,681

    Re: Table 'x' was not locked with LOCK TABLES

    is this your command text with a select and an update divided by '\n'?
    never seen that this is working like that... but ok, I'm willing to learn ;)
  17. Re: need source code : Loading / starting / stop Services ...

    just create a new project with the option "windows service"
    Visual Studio will create the necessary procedures within this project. For further more info you just call the help / msdn task e. g. for...
  18. Replies
    17
    Views
    2,614

    Re: Upgrading a big project to Visual Studio 8

    Thanks guys! :thumb:
    (http://www.microsoft.com/downloads/d...displaylang=en seems to be a broken link though)
  19. Replies
    17
    Views
    2,614

    Re: Upgrading a big project to Visual Studio 8

    Hiho peeps,

    while also upgrading a huge project to VS 8 I wonder about differences between old MFC and new MFC.

    Is the anywhere a document describing in details what is new in MFC9 and what to...
  20. Thread: Datagridview

    by ozzy66
    Replies
    1
    Views
    833

    Re: Datagridview

    dont be lazy and look at MSDN
    http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridview.aspx
  21. Replies
    7
    Views
    53,780

    Re: Send Key Strokes to a specific window handle.

    via API call:
    http://msdn.microsoft.com/en-us/library/ms646310.aspx
  22. Thread: Set

    by ozzy66
    Replies
    8
    Views
    1,105

    Re: Set

    :confused: set, union, what :confused: specify the problem exactly. Which context are you talking about numeric sets? :confused:
  23. Thread: open tab page

    by ozzy66
    Replies
    1
    Views
    2,205

    Re: open tab page

    tabCtrl.SelectedTab = tabCtrl.TabPages[<index_or_key>];
  24. Replies
    5
    Views
    1,176

    Re: checking for a value in the registry

    http://msdn.microsoft.com/en-us/library/xzxd58z1.aspx
  25. Replies
    5
    Views
    1,176

    Re: checking for a value in the registry

    sorry, I don't get it, what do you mean by ' it dosnt check' if you put smth in the reg value? Which part of the if-clause is run through?
Results 1 to 25 of 129
Page 1 of 6 1 2 3 4





Click Here to Expand Forum to Full Width

Featured