Search results for query: *

  • Users: SLPx
  • Order by date
  1. S

    ODBC SQL Error

    Looks like a group by clause is clashing with isnull function does your sp gives any return if you execute it at management studio with test data?
  2. S

    Question How to get the howl html document not just the source code ??

    It executes, However it depends with the internet settings in the IE at control panel.And @zola320, if you can express your target here in your web url, might express more The hidden thing is, you cannot retrieve all its content (the dynamic HTML) by the document property. The...
  3. S

    Question How to get the howl html document not just the source code ??

    Try with webbrowser control or HTMLWindow elements If your web has Frames or Java Scripts, this wont help i guess
  4. S

    programmatically adding items to a combobox

    Your dataset is populated at the form load event, But once you select the Item in the combo box, does this selection (query result ) received to your RioDataSet1 By using execute non query does it provide data to the dataset. The rest of the code seems to ok
  5. S

    Question Argument Exception is unhandled

    Even though cStr() should provide the necessary info, Try "Interpolated at Level " + level.tostring + ". Continue (C), Save and Continue (S) or Stop (X)?" Your code is OK, What version is your VB and .Net Framework ?
  6. S

    trace the window application?

    OK pal, There are three ways as I know of. But yet, From your text, Its not clear whether this is a 'stand alone one instance per workstation' application or 'One-Pc-One-Instance' app or 'One-Pc-Multi-Instance-app' Depending on that paradigm you might need to control the data logging as logging...
  7. S

    Question Get text from webpage but not the easy one ;)

    On java embedded pages, use 'DOMDocument' property and iterate through each element using for-each debug.print it the structure and from them use your logic to assemble the necessary portion to use with your commands Document property is static, Means it displays the Base HTML page only...
  8. S

    Question SQL dates - Nullreferenceexception was unhandled error

    Dim dateMonth As String= MonthCalendar1.SelectionEnd.ToString("dd-MMMM-yyyy") Dim qrystr As String = "select * from TBL_Student_RSS where [incidentdate] > '" & dateMonth & "'" Insert a line as debug.print qryStr Then goto output window and get the string that will display when you run this...
  9. S

    Populating DataGridView from BackgroundWorker - Invoking

    As mentioned Your delegate designed for a string array for one element and You are parsing two elements to it. Either change it as Herman suggests, Or change your delegate to UpdateDataGridViewCallback(ByVal column1 As String, column2 as string) or change your invoke to...
  10. S

    Question SQL dates - Nullreferenceexception was unhandled error

    select * from TBL_Student_RSS where DateTime between 1. Term DateTime is a reserved word in SQL Server/SQL Server Express/Oracle. If you are using such db, change the field name. 2. Date time need to parse between Date Literal (i.e #) so the correct SQL be select * from TBL_Student_RSS...
  11. S

    Question SQL dates - Nullreferenceexception was unhandled error

    Ok one thing coming in to the mind is, does Format("xx/mm/xxxx") is actually provide a valid date. If i'm not mistaken, the term 'm' is used to minutes and not months ain't it? For month, its 'M' isn't it?
  12. S

    Infinite Redraw Loop with "Program not Responding" Message

    Ok. There are few things possible in this case 1. Why you use the 'Draw' Method to shadow the paint event. Use a shell method to wrap the paint event and call from it the Draw method, if you need to draw the graph 2. In draw method, you are drawing axes(twice), if it not a must, draw axes last...
  13. S

    Infinite Redraw Loop with "Program not Responding" Message

    For a best reply, put code here to check, Try threading as Herman suggests. check for window.paint events etc, so many places to look. need code
  14. S

    SQL Update Error

    Well admin, in the first instance, its directly a query output like 'TermOfPayment AS [TOP]' for direct report output, so yet there are ways, it didn't excericise for quick responses. anyway, for sp thing, Yes its extending business logic to storage, And its what it is. SPs are Database...
  15. S

    SQL Update Error

    With all respect mate, I agree with you wholly. still I found it useful in certain ways. For Ex, In one of an application the customer used the term 'TOP' to indicate the short-term for 'Term Of Payment' Yet, no other option than [TOP] in this case. Yet, anyways its a bad habit to use SQL...
  16. S

    SQL Update Error

    use [User] instead 'User' I.e UPDATE tblusers SET [User]=? WHERE ID=?
  17. S

    Question Few Questions, Please advise

    Hi All I'm a newb in this forum. However I have been working with .net for quite some time. I have few problems, currently and really appreciate if someone can give me directions for this 1. My VB.NET (VS2005, SQL 2005, XP SP3, .NET 2) application in design phase shows in bright blue colors...
Back
Top