Search:

Type: Posts; User: coolcurrent4u

Page 1 of 13 1 2 3 4

Search: Search took 0.04 seconds.

  1. communication between parent and childform in dll

    I am c# in .net 2.0 and need to send message between config form and any parent Form that uses the config form.
    When i click test on a config form displayed modally from a dll in c#, the config...
  2. Re: ChatGPT Boids Simulation: Winforms, WPF versions

    How does chatGPT come in, you used it to generate the codes?
  3. Replies
    2
    Views
    9,912

    Re: Simple web server in pure VB.Net code.

    Is it possible to return actual web pages with form and process them upon POST request?
  4. Re: Data annotation for window forms input validation

    Nice work, what is the minimum framework required?
  5. Re: OptionsView control including Design-time support

    i was able to fix the scroll issue finally!


    Protected Overrides Function GetHitTest(ByVal point As System.Drawing.Point) As Boolean
    point = Control.PointToClient(point)
    ...
  6. Replies
    5
    Views
    2,889

    VS 2008 Re: case insensitive

    I have been using string.containes to do case insensitive compare, looking for word in sentence.
    You talked about case-insensitive comparisons, but will CompareText Function work in any culture?
  7. Re: OptionsView control including Design-time support

    Thanks for your answer, but I found another way.
    I simply just change back the optional panel autoscroll to false as i have set it to true earlier.
    I added another panel inside each option panel,...
  8. Re: OptionsView control including Design-time support

    hi Nick.

    How do i make the panel scrollable?
    i have already set autoscroll to true, which makes the panel show a scroll bar when the content is really long, but the scrollbar doesn't respond to...
  9. Re: Shape Editor, including many shapes, Resize and more

    Thanks for such a wonderful work.
  10. Replies
    5
    Views
    2,394

    VS 2005 Re: touch size date picker

    Yes, thanks for the suggestion, i am using winforms, i will consider the upgrade advice.
    But for compatibility with .net 2.0 and its reports i am using the ide. converting the reports from .net 2...
  11. Replies
    5
    Views
    2,394

    VS 2005 touch size date picker

    Hello,

    I have been looking for a touch size date picker (a date picker with large number or whose size can be changed), but have found none yet.

    Can anybody point me to any?

    Thanks
  12. Replies
    12
    Views
    20,731

    Re: MonthPicker control

    hello, NickThissen, is there any date picker with large numbers for thumb finger that you can suggest?
  13. Replies
    2
    Views
    1,813

    Re: Problems with IExtenderProvider

    did you ever get this solved, i am interested?
  14. Re: [RESOLVED] Printing Barcode with ESC/POS on Epson Printers

    can you pls post the code that worked for you?
  15. Re: Visit Every Control on a Form (includes nested controls, no recursion)

    Is there any way to make it work for Toostripmenu, Datagridview columns, Toolstripmenuitem and ToolStripbutton?
    because some of these are derived from Component Class
  16. Re: Visit Every Control on a Form (includes nested controls, no recursion)

    It doesnet work for toolstripmenu items or any non control
  17. Replies
    2
    Views
    912

    VS 2005 Re: cue banner in KryptonTexbox

    than you for your help, but did you try this with the control?
  18. Replies
    2
    Views
    912

    VS 2005 cue banner in KryptonTexbox

    I tried using the following code to set cue banner


    Imports System.Runtime.InteropServices

    Public Class Form1

    Private Sub Form1_Load(sender As System.Object, e As System.EventArgs)...
  19. VS 2005 Re: Configuration file not saving runtime (not debugging)

    i am talking about a deployed vb.net application, not in visual studio
    when i exit the application at start it again, after i must have supplied the correct settings, i see the old values not the...
  20. VS 2005 Configuration file not saving runtime (not debugging)

    I am using the code below to save connection string during runtime (Clie)




    Try
    connStr = String.Format("SERVER={0}; PORT={1}; USER={2}; PWD={3}; DATABASE={4};", _...
  21. How can i determine royalties for my software

    I have just developed a software product, and another company in another country showed interest in white labelling the software and reselling.

    The software uses activation codes, which the...
  22. VS 2005 Re: Warning: an error occurred while executing the subreport

    Ok I found the solution to my problem.

    All I did was to change the datatype of the parameter in the subreport to integer instead of string
  23. VS 2005 [RESOLVED] Warning: an error occurred while executing the subreport

    I have this code, and I am trying to generate a report Student with sub report Phone

    Imports Microsoft.Reporting.WinForms

    Public Class Form1
    Private dtStuds As New DataTable
    Private...
  24. Replies
    10
    Views
    10,698

    Re: vb6 and WiFi, Possible?

    thanks for you code, I got an error when running
    116577
    would this work with bluetooth too, or you can point me that direction?
  25. Replies
    151
    Views
    163,356

    Re: VB6 - JsonBag, Another JSON Parser/Generator

    You used collections in the jsonbag, i suggest dictionary as they are 10x faster than collections
  26. Re: CommonControls (Replacement of the MS common controls)

    good work, pls keep it up
  27. Replies
    151
    Views
    163,356

    Re: VB6 - JsonBag, Another JSON Parser/Generator

    thank you, you are the man

    I tried to check if an item exists in the above json string


    JB.Exists("status")

    but it return false
  28. Replies
    151
    Views
    163,356

    Re: VB6 - JsonBag, Another JSON Parser/Generator

    in php for the json string above, i could do


    $decoded=json_decode($json_string);
    $status=$decoded->status
    $request=$decoded->request
    foreach($request as $value){
    echo $value
    }
  29. Replies
    151
    Views
    163,356

    Re: VB6 - JsonBag, Another JSON Parser/Generator

    Is it possible to parse json string without the recursive example? for example, how do i parse this string in a for/foreach loop


    {
    "status": "error",
    "request": [
    "sdgsdg",
    ...
  30. Re: VB6 - Web Service Calls via WinHTTP POST

    thanks a million
  31. Re: searching for special character doesnt return anythins

    please note that the database is sqlite
  32. Re: searching for special character doesnt return anythins

    hello,
    note is the field name, the
    || is a concatenation operator so if a note value is
    some note, then in the select, it it concatenated as
    --some note-- . this technique is to help me...
  33. Re: [VB6] Escer, Hexer Classes and EscBuddy Tool

    i askd this already in the forums, but not getting any good respone. i am querying an sqlite database, searching for
    ! @ # $ % ^ & * ( ) ' that i saved ealier, but sqlite cant find it. the single...
  34. Re: searching for special character doesnt return anythins

    thanks for responding, but am earching not for a single characer, but the whole set as seen in my question. this was saved ealier in the database
  35. Re: vb6 - send email with attachment using smtp

    check you connection , make sure your gmail password is correct, try it in another computer, then post the result here
  36. searching for special character doesnt return anythins

    i saved and am searching for all string " ! @ # $ % ^ & * ( ) '" symbols in within a field content a database, using the following sql string


    Select ID From Contacts Where '--' || note || '--' ...
  37. Replies
    5
    Views
    944

    Re: unloading popup menuitem error

    thanks for your response, the top menu created in design mode is mnuTCategories,
    In the submenu mnuTCategory, i added one item mnuTCategory(0) at design time and the rest loaded at runtime .
    so...
  38. Replies
    5
    Views
    944

    Re: unloading popup menuitem error

    {delete}
  39. Replies
    5
    Views
    944

    unloading popup menuitem error

    when ever i try to unload a menu item from the popup menu item under combbox click event like this


    For i = mnuTCategory.Count - 1 To 1 Step -1
    Unload mnuTCategory(i)
    Next


    I get...
  40. Replies
    2
    Views
    848

    Re: listview icon issue

    am using winXp sp2, i have used icons, gifs and bmp all at 256pixel, but no success
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width