Search:

Type: Posts; User: vbgladiator

Page 1 of 13 1 2 3 4

Search: Search took 3.87 seconds.

  1. Replies
    8
    Views
    1,356

    Re: process.start

    the settings are set.
    when i log in, i can navigate and modify the folder any way i wish.
    When i run the .net application, however, i get access is denied when trying to open it in explorer.
  2. Replies
    8
    Views
    1,356

    Re: process.start

    Ok, this is weird.
    I am running the app locally on the workstation and am getting "Access is Denied" when trying to run that line.
    The folder it is trying to open is a local folder. I am logged in...
  3. Replies
    8
    Views
    1,356

    Re: process.start

    local folder. c:\somefolder

    The folder is also shared out.
  4. Replies
    8
    Views
    1,356

    Re: process.start

    hehe, my bad.
    It always returns a string which is a location on the hard drive.
  5. Replies
    8
    Views
    1,356

    process.start

    Hello,

    I have the following line of code that simply starts explorer with some folder

    System.Diagnostics.Process.Start("explorer.exe",...
  6. Re: passing generic collection to a method

    Thank You and I apologize for not enclosing the code portion of my post in tags.
    I'll make sure to do so from now on.
  7. passing generic collection to a method

    Hello,

    I have a base collection class which implements some things.
    public abstract class baseDataCollection <T>
    : System.Collections.ObjectModel.KeyedCollection<int, T>,
    ...
  8. Replies
    3
    Views
    7,148

    String.Format phone number

    Hey,

    String.Format("{0:(###) ###-####}", 1231231234) produces (123) 123-1234

    String.Format("{0:(###) ###-####}", 123) produces
    () -123

    How can I left align it so that if only 3 digits are...
  9. Replies
    2
    Views
    638

    Re: propertyinfo.getvalue

    I'm sorry, i completely miswrote that.
    Yes, that is what I meant, hehe.
    I figured it out.

    Thanks,
  10. Replies
    2
    Views
    638

    propertyinfo.getvalue

    Hey,

    How can I get the value of a property if i'm in a shared class?
    I can't use Me as the object parameter.

    Thanks,

    MA
  11. Replies
    1
    Views
    502

    communication

    Hey,

    What is the best way to have your application talk to itself over networked computers?

    Thanks,
  12. Thread: Lock

    by vbgladiator
    Replies
    3
    Views
    485

    Lock

    Hey,

    I have a class (static) with a static collection property (public).
    I have a background worker which iterates through the collection and assigns some properties (it is quite time consuming)....
  13. Thread: threading

    by vbgladiator
    Replies
    2
    Views
    442

    threading

    Hi,

    This is the code that I have. This code is called by a background worker.



    private static void RefreshProperties(System.ComponentModel.BackgroundWorker worker, DoWorkEventArgs e)
    ...
  14. Replies
    9
    Views
    877

    Re: background worker

    yeah, that's the weird part. it just ends.
  15. Replies
    9
    Views
    877

    Re: background worker

    I did go through it line by line, as soon as I get to the line that calls the procedure, the program ends.
    Also, DataItems is a class with 2 integer members.
  16. Replies
    9
    Views
    877

    Re: background worker

    oops, sorry, I completely forgot this is in C# code.
    Manager is simply a class with bunch of static method.
    I pass in worker in order to be able to report progress in the process routines....
  17. Replies
    9
    Views
    877

    Re: background worker

    I do have that propert set to true (WorkerReportsProgress)

    This is the dowork code



    void _worker_DoWork(object sender, DoWorkEventArgs e)
    {
    ...
  18. Replies
    9
    Views
    877

    background worker

    Hey,

    I'm using a background worker.
    In the DoWork event, I call my routine that is to be executed.
    Within that routine, I call another routine in my application at which point the program ends....
  19. Replies
    2
    Views
    418

    Re: Access Form

    yes, it crashes on all, more on some than others though.

    i do not have any activex controls on the form.

    I might try to re-import all the objects into a new database.

    I do think it's a...
  20. Replies
    2
    Views
    418

    Access Form

    Hey to all,

    I have an access application with a form and a sub form.
    I personally do not experience this often, but the users of this app do.
    I test locally and they run over the network.
    ...
  21. Thread: Vpn

    by vbgladiator
    Replies
    5
    Views
    519

    Re: Vpn

    Yes, that helps a lot.
    Thank you.
  22. Thread: Vpn

    by vbgladiator
    Replies
    5
    Views
    519

    Vpn

    Hey,

    I was given all the credentials for VPN access so I can connect to my client's computer and access some files.
    I made a new connection through 'My Network Places' and when I double click on...
  23. Replies
    6
    Views
    569

    Re: Memory upgrade

    I believe it's 533MHz.
    It's an Inspiron 6000.
  24. Replies
    6
    Views
    569

    Memory upgrade

    Hey all,

    My laptop takes pc 3200/4200 memory.
    I have some pc 5300 memory laying around.
    If I were to install that memory in my laptop, would it simply run at 4200; the max my laptop supports?...
  25. Thread: MDI forms

    by vbgladiator
    Replies
    3
    Views
    616

    Re: MDI forms

    it can't be because if it was, maximizing it will cover the parent form's toolbar.
    damn.
  26. Thread: MDI forms

    by vbgladiator
    Replies
    3
    Views
    616

    MDI forms

    Hey,

    I have a mdi parent form.
    i also have 1 mdi child form that is always open.
    My problem is if another mdichild form opens up and is maximized, the first one is maximized as well.
    This is...
  27. Replies
    11
    Views
    857

    Re: Obfuscating

    Yeah, that's what I thought. I saw that option being disabled.
    Thanks,
  28. Replies
    11
    Views
    857

    Re: Obfuscating

    Yeah, i thought so as well.
    Well, thanks for all the replies.
  29. Replies
    11
    Views
    857

    Re: Obfuscating

    I have licensing routines where I have to have the keys for encrypting.
  30. Replies
    11
    Views
    857

    Re: Obfuscating

    In that case, I can use something like CodeVeil to scramble the MSIL header so that programs like Reflector cannot detect it, no?
  31. Replies
    11
    Views
    857

    Obfuscating

    Hi,

    I use the dotfuscator for obfuscating my exe. (the version that comes with vs)
    when using encryption, I have the IV value and the Key value hard coded in the application. After obfuscating...
  32. Replies
    5
    Views
    1,162

    Re: paint event mdi container

    agh, makes sense. forgot, thanks.
  33. Replies
    5
    Views
    1,162

    Re: paint event mdi container

    hmmm, it works fine if I set the backcolor.
    This however, does not work.


    For Each ctl As Control In Me.Controls
    If TypeOf ctl Is MdiClient Then
    Dim g As Graphics =...
  34. Replies
    5
    Views
    1,162

    Re: paint event mdi container

    I love this place, the replies are always quick.
    Thank You,
  35. Replies
    5
    Views
    1,162

    paint event mdi container

    Hey,

    Is it allowed to draw some custom text on a mdi container form in the paint event?
    I tried to drawstring as an example but it does not show up.

    Thanks,
  36. Replies
    4
    Views
    756

    Re: sending e-mail smtp

    No,
    I'm using my host's smtp server. I have the credentials and the server name.
    It works fine from the office I mentioned, but nowhere else.
    This leads me to believe that it is probably...
  37. Replies
    4
    Views
    756

    sending e-mail smtp

    Hey,

    I use smtp to send e-mails.
    When sending from a computer at an office it works fine (goest through a router).
    When i'm trying to send from my computer, I get an error
    "unable to connect to...
  38. Thread: Reflector

    by vbgladiator
    Replies
    1
    Views
    477

    Reflector

    Hi,

    Does anyone know of a way to prevent Reflector from dissasembling a project file?
    Is there a way to compile it so that it cannot be dissasembled.
    That damn thing allows people to see all of...
  39. Replies
    10
    Views
    909

    Re: sending email

    if i'm not making sense, please provide any suggestions/examples you may have.
  40. Replies
    10
    Views
    909

    Re: sending email

    no,
    each time an error occurs, i want to be able to e-mail me about it.
    the user is shown an error message and the option of sending it to me.
    I want to be able to e-mail it without any user input...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width