Search:

Type: Posts; User: JMvVliet

Page 1 of 8 1 2 3 4

Search: Search took 1.04 seconds.

  1. Replies
    1
    Views
    459

    Interbase + BLOB fields

    Hi all,

    don't know if anyone has the knowledge or useful links, but how do I insert values into a blob field into interbase?

    Thanx in advance,

    JMvV
  2. Replies
    1
    Views
    1,077

    Re: Tooltip javascript ASP.NET

    I've decided to add the complete code. It's a custom ASP.NET control. I've got my problem in the foregoing post up and running, but it gives me one strange thing. The javascript seems to run only...
  3. Replies
    1
    Views
    1,077

    Tooltip javascript ASP.NET

    Hi all,

    I've got the below javascript function. What it does: on an ASP.NET form, I register this script as a client startupscript. In the attributes of the controls, I add a mouseover event to...
  4. Re: Setting 'OVERFLOW' to ''

    Yeah, you're right, made a mistake in typing and copying the code... I've done it the right way :).

    Solved it another way, so I set this post to solved.

    Thnx for all the replies.
  5. Re: Setting 'OVERFLOW' to ''

    Oh, I'm sorry not to mention that: ASP.NET (VB.NET)...
  6. Re: Setting 'OVERFLOW' to ''

    by the way: read this about css:
  7. Re: Setting 'OVERFLOW' to ''

    sure that works? I can't get it to work. Have done this:



    sb.Append("var mydiv = document.getElementById('pnlData');"
    sb.Append("mydiv.style.overflow = hidden;")
    ...
  8. [RESOLVED] Setting 'OVERFLOW' to ''

    :confused: Hi all,

    I have a DIV panel in an ASPX page. At default it loads with scrollbars (OVERFLOW: auto). If I want the page to print (by clicking a button), I want to delete the OVERFLOW tag,...
  9. Replies
    3
    Views
    762

    Re: change image on imagebutton

    I have this part of code:
    Dim sb As New System.Text.StringBuilder
    sb.Append("if (typeof(Page_ClientValidate) == 'function') { ")
    sb.Append("if...
  10. Replies
    1
    Views
    368

    FieldValidators + Java

    Hi all,

    I have an ASP.NET form with plenty of textboxes to fill. If they are required or need some special kind of information, a field validator has been added. All works, but... I also have a...
  11. Replies
    3
    Views
    762

    change image on imagebutton

    Hi all,

    I've got the following problem. I have an imagebutton. When clicking the imagebutton, a question must be answerd with ok or cancel (javascript). Cancel does nothing, Ok fires some actions....
  12. Re: JavaScript + Required fields validators

    Nope, isn't true :). Have found problem:

    if I remove these two rules:

    sb.Append(Me.Page.GetPostBackEventReference(Me.btnCopyAddress))
    sb.Append("; ")

    It doesn't post back, but loops locally...
  13. [RESOLVED] JavaScript + Required fields validators

    Hi all,

    I have this code:
    Dim sb As New System.Text.StringBuilder
    'sb.Append("if (typeof(Page_ClientValidate) == 'function') { ")
    'sb.Append("if...
  14. Replies
    2
    Views
    620

    Re: Form Inheritance

    Hi!

    Yes! That could be the reason. I've compiled my project once in release mode, every time before in debug mode. And yes, it's only about my custom controls (which are deriving from the standard...
  15. Replies
    2
    Views
    620

    Form Inheritance

    Hi all,

    I've got a very strange problem. Have created a base form (fBase), derived a form from fBase (fBaseDetail), and finally derived a form (fObjects) from fBaseDetail.

    Filled fBaseDetail...
  16. Re: [RESOLVED] ImageButton clicking twice or more...

    Have found the solution:

    Dim sb As New System.Text.StringBuilder
    sb.Append("if (typeof(Page_ClientValidate) == 'function') { ")
    sb.Append("if (Page_ClientValidate() == false) {...
  17. Re: ImageButton clicking twice or more...

    Ok, I have tried to include that, but I'm not getting it to work. I have tried this:

    sJavaScript += "if (typeof(Page_ClientValidate) == 'function') "
    sJavaScript += "{ if (Page_ClientValidate()...
  18. [RESOLVED] ImageButton clicking twice or more...

    Hi all,

    I want to prevent users in ASP .NET 1.1 to click an ImageButton that saves data to a database twice. Ive done it this way (it works really nice):

    sJavaScript += "if...
  19. Thread: Date problem

    by JMvVliet
    Replies
    4
    Views
    569

    Re: Date problem

    both apps are on the same server but react different on the same call :(

    *ps: is nederlands niet handiger :)*
  20. Thread: Date problem

    by JMvVliet
    Replies
    4
    Views
    569

    Date problem

    Hi all,

    I've got two exactly the same applications, using exactly the same copy of a database. One of the applications uses time settings like 14:54:00, other application uses 02:54:00 AM.

    Both...
  21. Re: if statement always catching problem

    Yes, do a Round() command on the value, that would solve your problem. Don't know exact use of Round without the help... figure out :)
  22. Re: if statement always catching problem

    so what database server do you use? I know that SQL2K sometimes has a problem saving decimal values, i.e. replacing 4.5 by 4.499999999998. Can't find the bug at this moment, but you could search for...
  23. Re: if statement always catching problem

    What datatype does TonM, TonB and TonM have? It is about the decimals. Is the database field of an integer type, and the program variable a double? In that case, change database type to float, or do...
  24. Replies
    3
    Views
    633

    Re: unload form: only knowing handle

    Thanx, I'll try it... can't use unload form, because the tab control only knows the handle...
  25. Re: if statement always catching problem

    Hi,

    this part:

    Dim Ord, diffM, diffB, diffT, Mon1, Tot1, Bal1, Mon2, Tot2, Bal2, MonT1, MonT2 As Double will bee seen as: the variable Ord till MonT1 are variants, MonT2 is a double. Always...
  26. Replies
    3
    Views
    633

    unload form: only knowing handle

    Hi all,

    I have a question that is likely a bit unusual: I use a given tabcontrol. I create tabs on it dynamically. A tab can host a form by its handle, so I can set an OLE_HANDLE on each of the...
  27. Replies
    1
    Views
    524

    Javascript:Confirm button

    I've got a question: the following ASP.NET code works fully in my testproject. When I click my htmlbutton (defined protected withevents, not seeable in the code), I get a messagebox asking me what to...
  28. Replies
    2
    Views
    521

    Re: Query won't run

    Got it, query should replace the ',' by a '.' if the value is a float. Looks like a bug in SQL2K
  29. Replies
    2
    Views
    521

    [RESOLVED] Query won't run

    Does anyone know why this query won't run? The fields fValue_xxx are all of the type 'nvarchar(50)'. It says that:
    Server: Msg 8114, Level 16, State 5, Line 1
    Error converting data type varchar to...
  30. Replies
    7
    Views
    2,292

    Re: Attributes.Add problem

    The ApplyProposalAccord is inserted into the HTML part of the page. See the first post how I add the 'onclick' event to the attributes, calling ApplyProposalAccord.

    ApplyProposalAccord:
    function...
  31. Replies
    7
    Views
    2,292

    Re: Attributes.Add problem

    Have replaced the Webcontrols.Button by a HTMLButton. Now I get the error: document.getElementById( is null or not an object. Anyone knows how that could happen?
  32. Replies
    7
    Views
    2,292

    Re: Attributes.Add problem

    Ok, I've found out is was hidden in a conditional IF statement (<%if somevariable=true and so on)...

    Now, it asks me to apply as I want, it only doesn't fire the ASP.NET code...

    I'm further...
  33. Replies
    7
    Views
    2,292

    Re: Attributes.Add problem

    Hi,

    this is the code I get from the source:
    input type="submit" name="btnApplyProposalDetail" value="Apply this proposal" id="btnApplyProposalDetail" onclick="ApplyProposalAccord();" />
    The...
  34. Replies
    7
    Views
    2,292

    Attributes.Add problem

    Hi all,

    I have the following code in my HTML document (ASPX page):
    function ApplyProposalAccord()
    {
    if (confirm("Do you wish to apply this proposal?"))
    {...
  35. Re: DataColumn properties not pulling through into dataset

    Same problem here. Rather strange...
  36. Replies
    3
    Views
    4,322

    Re: Detect whether in debug mode

    So 'DEBUG' is a keyword, and not a private declared variable, according to your code? In that case, solved and many thanx...
  37. Replies
    3
    Views
    4,322

    [RESOLVED] Detect whether in debug mode

    Hi all,

    how could I detect in code whether I'm running the executable or whether I'm running my project from the .NET IDE? Does someone have a coding example for me?

    Thanx in advance,

    Marco
  38. Replies
    4
    Views
    1,008

    Re: javascript 'self.close()'

    :D it doesn't work. Same problem: the close() method is called right after the print(), not waiting for me to select the printer.

    Now, I have built in an invisible button, from which I call the...
  39. Replies
    4
    Views
    1,008

    Re: javascript 'self.close()'

    Ok, found the following:

    Public Sub print()
    Dim sc As String
    sc = "<script language=JavaScript>"
    sc = sc & "window.print();"
    sc = sc & "window.opener='call';"...
  40. Replies
    4
    Views
    1,008

    javascript 'self.close()'

    Hello all,

    I've got an ASPX page that pops up in a new window (via javascript) in my browser when I click a hyperlink on a page. I want to print it automatically, causing the user to select a...
Results 1 to 40 of 310
Page 1 of 8 1 2 3 4



Click Here to Expand Forum to Full Width