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

Search:

Type: Posts; User: EVS

Page 1 of 2 1 2

Search: Search took 0.04 seconds.

  1. Replies
    7
    Views
    11,595

    Re: Opening a new window in a Windows Application

    I'd like to have a window that would have a matrix which would be updated with data from an underlying database.
  2. Replies
    7
    Views
    11,595

    Re: Opening a new window in a Windows Application

    That's all good, but the problem is that when I close the window and try to show it again, an exception is thrown saying that I cannot open a closing window. If I override the onclosing function and...
  3. Replies
    7
    Views
    11,595

    Opening a new window in a Windows Application

    Hello!

    I am using Visual Studio 2008 Pro. I have a WPF form and a button. When the user clicks the button, I want to open another window, which is more complex than a simple messagebox - it would...
  4. Replies
    8
    Views
    3,200

    Re: Making a serial key for my software

    Thanks for that huge reply! Will give me something to think about! :D

    What I had in mind was, that the *customer* after a certain period needs to re-receive his key in order to continue using the...
  5. Replies
    8
    Views
    3,200

    Re: Making a serial key for my software

    Well, as far as random numbers go, all the trash numbers could be generated by something like random(random(NUMBER)) and the places from which the 8 date numbers are taken would be unique for each...
  6. Replies
    8
    Views
    3,200

    Making a serial key for my software

    Hi!

    I have this program created and I have always been thinking about serial keys. How they work and stuff.

    How about this idea - if one would employ a subscription-style payment system for his...
  7. Replies
    1
    Views
    1,598

    Re: Functional programming in ML

    Another thing:

    I hate to ask this, but is there a possibility to ASSIGN a value to a variable in a if-then construction? If-then is supposed to be an expression-operator, rather, than a statement....
  8. Replies
    1
    Views
    1,598

    Functional programming in ML

    I have this datatype defined:



    datatype 'a somedata = empty | data of string * string * 'a somedata list;


    how could I write a function that would print this out? :(

    I tried something...
  9. Thread: custom text editor

    by EVS
    Replies
    5
    Views
    1,297

    Re: custom text editor

    but that should mean that one can also create his own syntax highliting "plugins", right?
  10. Thread: custom text editor

    by EVS
    Replies
    5
    Views
    1,297

    Re: custom text editor

    oh, sorry - it's windows and IDEs are OK, I guess. But as lightweight as possible.
  11. Thread: custom text editor

    by EVS
    Replies
    5
    Views
    1,297

    custom text editor

    hey! can anyone suggest a text editor with customizable syntax highlighting (like textwrangler for MAC os x)?

    thanks!
  12. Replies
    3
    Views
    1,606

    Re: Vista and MS Office problems - registry releated

    i dunno what I could've possibly done to cause such problems. Lets just hope the registry mechanic will be able to do something. Kinda dumb from Vista to disallow even itself to edit the office...
  13. Thread: blurring

    by EVS
    Replies
    2
    Views
    1,115

    Re: blurring

    well, i figured it out eventually - used both simple convolution and gauss blurring. looks cool :) . I learned a lot.
  14. Replies
    3
    Views
    1,606

    Vista and MS Office problems - registry releated

    Here's the deal:

    The Office registry key and all it's child keys have lost their access permission lists and the owner. Thus, as soon as I try to do anything I'm simply errored out - no...
  15. get mouse x and y coords from method new object listener call

    what's non trivila here is ,IMO that I would need to get the coordinates out of the following construction:


    frame.addMouseListener(new MouseAdapter() {
    public void mouseClicked(MouseEvent e)...
  16. Thread: blurring

    by EVS
    Replies
    2
    Views
    1,115

    blurring

    I'd like to do a blur on a buffered image pixel by pixel, but problem is that i need to do it pixel by pixel, not with that convolveOp stuff everywhere I see. Does anyone know of a good java resource...
  17. Replies
    7
    Views
    1,251

    what do these operators do?

    *dst++=total;
    *kp++;

    do they move the pointer one step forward or something?

    thanks
  18. Thread: Vb Html Post

    by EVS
    Replies
    5
    Views
    1,341

    Re: Vb Html Post

    ok, I understand your concerns, but, let me assure you, I don't want to log onto a website or pass anything to a VB6 program. I want to pass them from a Microsoft Office Access program to a ERP...
  19. Thread: Vb Html Post

    by EVS
    Replies
    5
    Views
    1,341

    Vb Html Post

    Hey!

    I have a MS Access program, that would need to send a HTML POST to some other program and then be able to receive info back. how can i do this with VB code? Let's say that the POST should be...
  20. Replies
    4
    Views
    2,509

    Re: Pseudographics and arrays...

    the data is a array of 10 characters. I put 2 checks on the string - check the count of characters in the string (it should be obviously==19) and check to see if there are 10 characters and 9...
  21. Replies
    1
    Views
    1,024

    Java applets and exceptions

    I would like to check if a string consists only of integer characters (i.e. is a number) or if it's a word. I can use Integer.parseInt(mystring);, but the only thing I found about this is that I have...
  22. Replies
    4
    Views
    2,509

    Re: Pseudographics and arrays...

    yeah, guessed already so.... a.k.a. ascii art; just wanted to make sure.

    and what about the building-an-array-from-a-comma-delimited-string thing? I implemented that. The only problem is now to...
  23. Replies
    4
    Views
    2,509

    Pseudographics and arrays...

    Hello!

    So, quick and painless - what is Pseudographics?

    Other thing - about programming principles - if I had to create a Java Applet and then require the user to enter a array of ten elements,...
  24. Replies
    4
    Views
    1,406

    Re: several html forms POST to one .php file

    d'oh .... nevermind. the above code is working :D
  25. Replies
    4
    Views
    1,406

    Re: several html forms POST to one .php file

    yeah, sure, but the forms are auto-generated by the script that selects table rows from the mysql table. the code below is generated:


    <table border="0"><table width="100%"><tr><td><dl...
Results 1 to 25 of 41
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured