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

Search:

Type: Posts; User: davidc2p

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Copying content to a DOM Textarea element in c#

    Greeting,

    I sometimes have a problem with the code below. Sometimes it returns a strange error depending on the content I want to pass to the Textarea element of a webpage.



    HtmlDocument...
  2. Re: about controlling the visibility of table row

    I've heard that style.display isn't working in Safari. Is it correct?
  3. Replies
    8
    Views
    1,438

    Re: Very strange problem in firefox

    In that case, i would totally aggree with you, but where would be the trigger for the submission? what is the button image for if not to trigger the script submission?
  4. Re: text box content style with mouseover effect

    Do you want something like a tooltip over your text box?
  5. Replies
    8
    Views
    1,438

    Re: Very strange problem in firefox

    I disagree with these 3 reasons for 3 reasons:

    1- Always a good practice to quote what kind of script you are calling even if implicit.

    2 - the initial program is using an INPUT type image. ...
  6. Replies
    2
    Views
    656

    Re: Regarding javascript

    Many Javascript resources are available through the net writing "javascript" on your favourite seach engine. Anyway my favourite would definitly be http://www.w3schools.com/js/js_intro.asp for there...
  7. Replies
    8
    Views
    1,438

    Re: Very strange problem in firefox

    You don't have any object in your HTML code to trigger a Javascript function or in this case submit the form. You should remove the submission part on the form tag and complete using something like:...
  8. Replies
    4
    Views
    1,772

    Re: Preview a Word Document...

    1) if your automation cancels or if you don't close the word document (it seems you close it before quiting wordapp) after running your application then the word file stays locked. You should check...
  9. Replies
    5
    Views
    2,448

    Re: How to make Setup in Installshield?

    Why not using something more simple at the beginning like Inno Setup for example...
  10. Replies
    9
    Views
    1,913

    Re: Import data from excel

    When i have problems about doing things to automate Office, i record macros and then check the code it has generated. It helps me a lot.
  11. Re: Avoiding the display of an image on treeview node

    Not completly satisfactory, but adding a transparent picture to the imageList previous to all other images solves the problems.
  12. Re: Avoiding the display of an image on treeview node

    I used an underflow value because it is how it was generate in the *.Designer.cs when i add a node manually, giving the 2 proprieties, ImageIndex and SelectedImageIndex, the value of "(NONE)".
    In...
  13. Replies
    6
    Views
    2,686

    Re: Looking for free form submit php script?

    Don't mix the concepts:
    The form is HTML, Javascript submits the form and PHP manipulates the content of the form on the server. There's no PHP form, unless it's generated by it.

    Just do it...
  14. Replies
    3
    Views
    651

    Re: JAVASCRIPT & PHP

    PHP and Javascript are like good friends working together, but at different locations, rarely seeing each other. While Javascript works on the browser, satisfying the client local request, PHP is...
  15. Replies
    3
    Views
    692

    Re: a beginner

    And you won't need any server side programming to achieve it as shown on the example from PeejAvery.
  16. Replies
    2
    Views
    845

    Re: Horizontal scrollbar in Combox Box

    Do you have some example where this is done, because i've never seen this before, and i really don't know how could do it...

    If you want the scroll bar because the text is larger than the...
  17. Avoiding the display of an image on treeview node

    Hello,

    i work under the following environment: WinXP, CSharpDevelop under .NET 2.0.

    Problem description:
    To simplify it, I'm trying to make a single node on a treeView. The treeview is...
  18. Replies
    5
    Views
    7,576

    Re: Ajax = new mood?

    I liked your image about alien technology :)

    However it seems to me that the benefit of bringing static information to the page without refreshing it entirely is outstanding!
  19. Replies
    5
    Views
    7,576

    Ajax = new mood?

    I've just discovered Ajax. At first, i thought it was a new language since i've never heard of it before. In fact it's just part of Javascript since long. I've heard its popularity has been brought...
  20. Re: [RESOLVED] Online Submission System (Javascript)

    In my experience the getElementsByName function works in Firefox and not in IE... I'm trying to make things work, when possible, on both environment, but I'm not finding any information on the net...
  21. Replies
    3
    Views
    874

    Re: Extending HTML Forms

    You also might use a little javascript function that would add one more field each time the previous was filled, using
    document.write method.
  22. Replies
    3
    Views
    1,039

    Re: form submission with Javascript

    You have the concept, it is done like you wrote. But little observation:

    put
    onClick="submitForm();" instead of
    onClick="submitForm()"

    but i've no idea if it would fix the problem,...
  23. Replies
    4
    Views
    1,034

    Re: Default Button

    Then enlight us!!!! :mad:
    Arrogant attitude leads nowhere... :thumbd:
  24. Replies
    3
    Views
    874

    Re: Language for TextBox

    I've never done this in an application, but maybe these ressources might help you:

    http://www.astahost.com/info.php/vb-net-switch-regional-language-automatically_t6031.html
    or...
  25. Re: Is there a way to get item from a ListView without actually selecting it

    yes you can do this, if you know the row number, the column number or if you are searching a line according to the content of a reference cell:

    listView1.Items[line].SubItems[column].Text
Results 1 to 25 of 45
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured