Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
J

john_paul

@john_paul
About
Posts
23
Topics
15
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Hiding a Button in a DataGridView
    J john_paul

    I have a DataGridView in a windows form that I need to be able to make the datagridviewbutton visible or invisible depending on the value of another column. I can not figure out how to make this happen when I bind the datatable to the datagridview. Any help would be appreciated. Thanks John

    Windows Forms help tutorial

  • HTTP_REFERER question
    J john_paul

    How do you get the System.Web.HttpContext.Current.Request.ServerVariables("HTTP_REFERER") in a web service. I need to know where the request is coming from and using the above does not work. Thanks

    ASP.NET question

  • Graphs using GraphicsServer
    J john_paul

    Thanks for the reply Here is the code that I used to get the formatting I wanted. With .Grid.AxisY .AxisMode = AxisMode.ValueLinear .AxisScale = AxisScaleType.UserDefined .LabelFormatMask = "###,###,###" .GridLinesOn = True .GridLineProperties.Color = Color.DarkGray .MaxAxisValueUser = highest .MinAxisValueUser = 0 .TickMode = TickMode.OnStartAtZero .MajorTickInterval = 5 .MajorTickCount = 0 'If count is nonzero, interval is ignored .LabelProperties.Font = New Font("Tahoma", _ 8, FontStyle.Bold) .LabelProperties.Font.Dispose() End With

    Visual Basic data-structures

  • Graphs using GraphicsServer
    J john_paul

    On the Y axis of a graph, if the graph starts at 0 and goes to 10000. Is there a way you can force the graph to display the Y values to include a comma so that 10000 renders as 10,000. Thanks

    Visual Basic data-structures

  • VB 2005 GraphicsServer
    J john_paul

    Does anyone have a project that they have done that demonstrates how to use the GraphicsServer.GSNET.Charting.GSNetWebChart. Thanks

    Visual Basic tutorial

  • VB 2005 Gridview question
    J john_paul

    I have a gridview in a VB2005 project that contains a checkbox. In VB2003 I used a datagrid and I have the code to read the datagrid to determine how many and which boxes were checked. I am having trouble converting my code to use a gridview. How do you in VB2005 read a gridview and determine if the checkbox was checked? Thanks

    Visual Basic question

  • Serialization in vb2005
    J john_paul

    Thanks for your help

    Visual Basic json

  • Serialization in vb2005
    J john_paul

    I have a class that I want to save to viewstate. In order to save it to viewstate it has to be serializable. How do you serialize a class and then unserialize it. thanks John

    Visual Basic json

  • Javascript question - validating dollar amount
    J john_paul

    Thanks for the reply, but can't view it. Javascriptkit.com's server has been down for two days

    Web Development question javascript regex

  • Javascript question - validating dollar amount
    J john_paul

    I am trying to validate a text box as the user keys in the dollar amount. Using the below function, if the user keys in "a", it does the alert If I key in 10aa, I get the alert but if I key in 10a, I don't get the alert. Any ideas about what I am doing wrong. Thanks John function TestForNumber( obj, event ) { var curChar = String.fromCharCode( event.keyCode ); var inpStr = obj.value + curChar; result = inpStr.match( '^[0-9]+\.?[0-9]??[0-9]?$' ); if ( ! result ) { event.returnValue = false; event.cancel = true; alert("Unapplied cash can only be numerical data") } }

    Web Development question javascript regex

  • X axis labels question - Web project
    J john_paul

    I was able to determine that I needed to use: labels.SetValue( SeriesComponent.Label, datapoint, monthArray(dataPoint))

    Visual Basic tutorial data-structures question

  • X axis labels question - Web project
    J john_paul

    I can not figure out how to include a x axis label. When I run the program it only puts numbers 1 thru 6, which are the number of columns I have in the Bar2d graph. I would like to replace the 1 thru 6 with for example Jan Feb Mar Apr May Jun. The project is using the Imports GraphicsServer.GSNet.Charting and Imports GraphicsServer.GSNet.SeriesData in a web form. Thanks in advance John

    Visual Basic tutorial data-structures question

  • Regular expressions
    J john_paul

    I am trying to test a text box for either numbers or a null entry. I have tried using [0-9]|[:blank:]|[:space:] but it will not work. Any help would be appreciated.

    Web Development help

  • test for numbers containing a decimal point
    J john_paul

    I know that I can use javascript to test for a number using the below, but I am having trouble figuring out how to use javascript to test for the entry of for example 100.00 or 100, the decimal point is messsing me up. Any help would be appreciated. function TestKeyPress( obj, event ) { var curChar = String.fromCharCode( event.keyCode ); var inpStr = obj.value + curChar window.status = ''; obj.title = ''; result = inpStr.match( '^[0-9]+$' ); if ( ! result ) { window.status = 'Please enter only numbers.'; obj.title = window.status; event.returnValue = false; event.cancel = true; } }

    Web Development tutorial javascript regex help

  • How do you code a method = post
    J john_paul

    I have to send data to another domain/url via the post method. If the url name is https://theirwebaddress.com and I need to send two text fields first and last name. How would you code this? Thanks

    Visual Basic com question

  • How to Post Data to a different domain/url
    J john_paul

    I did look in MSDN and it showed using the request.query.string without any parameters and the output as being unparsed. But what they don't show and I don't understand is how I get the unparsed data into a variable that I can parse. The data that I will be receiving does not have any parameter names just data. Thanks

    Visual Basic tutorial database com sales help

  • How to Post Data to a different domain/url
    J john_paul

    Thanks Sorry for the email

    Visual Basic tutorial database com sales help

  • How to Post Data to a different domain/url
    J john_paul

    I am trying to figure out how to send data and my customer to my banks web site to enroll for paying their bills online. The post string that I am suppose to use is: https://banks_web_site.com/enroll?id=12345&name=Customer&accountid=98765&backurl=https://my_web_site.com/return.aspx The bank will return to me the following info and my customer (so they can continue the payment process) via https://my_web_site.com/return.aspx?return=0&enroll_id=765431 I'm having trouble trying to get this to work, any help would be appreciated. Another thing that has me stumped is if I do what the bank calls a payment search, I send to them with no return url: https://banks_web_site.com/pay_search?id=12345&&enroll_id=765432&days=2 They will return the following: 0::: 7777:1:1123123123:VISA:987554 8888:1:1231238744:AMEX:876454 Unlike the first example, the returned info is not qualified by a query string name. How do you receive this data ?

    Visual Basic tutorial database com sales help

  • How to Post Data to a different domain/url
    J john_paul

    I am trying to figure out how to send data and my customer to my banks web site to enroll for paying their bills online. The post string that I am suppose to use is: https://banks_web_site.com/enroll?id=12345&name=Customer&accountid=98765&backurl=https://my_web_site.com/return.aspx The bank will return to me the following info and my customer (so they can continue the payment process) via https://my_web_site.com/return.aspx?return=0&enroll_id=765431 I will be using VB. I'm having trouble trying to get this to work, any help would be appreciated. Another thing that has me stumped is if I do what the bank calls a payment search, I send to them with no return url: https://banks_web_site.com/pay_search?id=12345&&enroll_id=765432&days=2 They will return the following: 0::: 7777:1:1123123123:VISA:987554 8888:1:1231238744:AMEX:876454 Unlike the first example, the returned info is not qualified by a query string name. How do you receive this data ?

    Web Development tutorial database com sales help

  • Passing Data between different web sites
    J john_paul

    Thank you for the info.

    Visual Basic question csharp
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups