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

Search:

Type: Posts; User: HairyMonkeyMan

Page 1 of 5 1 2 3 4

Search: Search took 0.08 seconds.

  1. Replies
    2
    Views
    1,061

    Re: ASP.NET not showing up

    do you have the .net framework installed on the server? asp.net pages need a compiler. htm is what the browser sees when an aspx file is compiled.
  2. Inversion of control and AOP frameworks

    Hello community, I haven't posted in a long time..

    A question that is milling over in my mind is what is the best most flexible inversion of control framework? Two that jump to the top of the...
  3. Re: Anyone to ensure functions get run consecutively (and not simultaneously)?

    unless the main thread is kicking off async stuff in other threads. Really no way to know without seeing any code.
  4. Re: Charting package for financial application

    Have you thought about using crystal reports... or maybe the google charts api?
  5. Replies
    2
    Views
    1,266

    Re: Crystal Report Prompts for Password

    Fill a datatable and bind that to the report rather than letting crystal log in to your db.
  6. Replies
    5
    Views
    765

    Re: Protect component library

    Have you tried this?


    if debugger.IsAttached then
    ' An IDE is attached (may be on remote machine)
    end if
  7. Re: dataview filter applies automaticly in defaultview - avoid this?

    Instead of
    playerview = players.DefaultView try
    playerview.Table = players
  8. Replies
    5
    Views
    1,047

    Re: Monitoring a Variable [VB.net 2008]

    The UI is handled by a seperate thread, so you have to either have
    application.doevents inside your loop or place your loop code in a background worker thread.
  9. Replies
    3
    Views
    757

    Re: Displaying an MDIChild form

    I don't think the reference to frmMain is in scope. Try it like this:



    SecondForm.MDIParent = Me.MDIParent
  10. Replies
    42
    Views
    8,342

    Re: Hotspots in .Net

    It is going be a bit more complicated if you are using irregular shaped hotspots.

    Using the mouseup event will give you coordinates clicked in the picbox. You will need a way to determine which...
  11. Re: Starting a Windows Service Programattically

    It comes with the territory, don't worry about it.. at least you found the problem :)
  12. Re: Starting a Windows Service Programattically

    I just tried this:


    Private scnService As ServiceProcess.ServiceController

    Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
    ...
  13. Replies
    8
    Views
    1,560

    Re: Father Christmas Arrived early.

    Very nice Grem!!..

    I'm driving around in a big van that gets about 45 miles to gallon. I'm going to get a motorbike :)
  14. Replies
    1
    Views
    429

    Re: Event Viewer Program

    click this and this
  15. Replies
    6
    Views
    743

    Re: Data Grid

    Think I know exactly what you mean...

    Have a look at this:
    You need a datagridview (call it DataGridView1) with 2 columns (1st one is min qty, 2nd is qty) and a button (Button1).


    Private Sub...
  16. Replies
    4
    Views
    815

    Re: Report Design woes!!

    What type of database are you using and what programming language?

    I hate crystal reports and normally try to do as little processing as possible inside the actual report. I as much as possible...
  17. Re: Starting a Windows Service Programattically

    Is the servicecontroller managed or unmanaged code? If managed, it should dispose when the variable with the object reference goes out of scope (probably whats happening when you exit your program)....
  18. Replies
    8
    Views
    6,129

    Re: How to hide message box

    If the messagebox has a title, you can use apis to get the messagebox's window handle, then you can use other apis to hide the window, and destroy it with your timer.
  19. Replies
    8
    Views
    6,129

    Re: How to hide message box

    Does the messagebox have a title?
  20. Replies
    10
    Views
    1,161

    Re: Send Anonymous emails

    I guess it depends which version of SMTP the ISP is running, and what security measures they have in place.
  21. Replies
    10
    Views
    1,161

    Re: Send Anonymous emails

    It is still possible, but if your server has an open relay it will be added to blacklists faster than you can say lickety split.
  22. Replies
    8
    Views
    1,144

    Re: create Log file

    Theres a nice example here:
    http://www.codeproject.com/KB/vb/ErrorsAndEventsExample.aspx
  23. Replies
    4
    Views
    1,440

    Re: Return id from stored procedure

    There is a scope_identity() function which will get you what you want

    see http://msdn.microsoft.com/en-us/library/ms190315.aspx

    gl ;)
  24. Replies
    1
    Views
    2,880

    Re: Best Free PDF Creator for VB.Net

    There is PDFbox... check out http://www.pdfbox.com/userguide/dot_net.html

    Unfortunately (for us), it was wrote in java. You therefore need java dlls to get it to work (there are links to IKVM in...
  25. Re: Program Licensing in a Citrix Environment

    As far as securing the number of users... your citrix client needs to logon using a domain account. You can setup which users have access to which programs. This is going to be the best way imo. ...
Results 1 to 25 of 118
Page 1 of 5 1 2 3 4



HTML5 Development Center

Click Here to Expand Forum to Full Width