Search:

Type: Posts; User: Shadows

Page 1 of 3 1 2 3

Search: Search took 0.04 seconds.

  1. Re: SysListView32 Get Item Text, how to with LVM_GETITEMTEXT ?

    I looked at that clean coded VB example and tested it for which it worked perfectly. I attempted to port line by line into C# which was unsuccessful for some weird reason, funnily enough I ported...
  2. Re: SysListView32 Get Item Text, how to with LVM_GETITEMTEXT ?

    struct LVITEM
    {
    public Int32 mask;
    public Int32 iItem;
    public Int32 iSubItem;
    public Int32 state;
    public Int32 stateMask;
    public string pszText;...
  3. Re: SysListView32 Get Item Text, how to with LVM_GETITEMTEXT ?

    I appreiciate the post but c++ just confuses me more. I'm not comfortable with C++ therefore I find alot of it overwhelming.

    I see hundreds of VB and C++ examples but no c# example (not even one).
  4. SysListView32 Get Item Text, how to with LVM_GETITEMTEXT ?

    Hi all,

    I've been looking at the various examples posted however looking at the example posted by ben in http://www.vbforums.com/showthread.php?t=397764&highlight=SysListView32 is giving me a hard...
  5. Thread: Unix Timestamp

    by Shadows
    Replies
    2
    Views
    1,017

    Re: Unix Timestamp

    I've managed to solve the problem using datediff, thx
  6. Thread: Unix Timestamp

    by Shadows
    Replies
    2
    Views
    1,017

    Unix Timestamp

    Hello (this is a vb question), I develop in php using mysql databases, some tasks I require to get a present timestamp which I would just use the time() function in php to get the current timestamp....
  7. Replies
    2
    Views
    1,047

    Using Pointers, Edit Minesweeper Values

    Hi,

    Say I have a handle to the minesweeper game in Windows and I want to use C++ to edit the timer or score for this game by editing the values the game holds in memory using pointers, can someone...
  8. Replies
    3
    Views
    1,018

    Re: .htaccess URL rewrite problem

    hi it works perfectly for links like

    /link/http://www.yahoo.co.uk

    but not for any URL which has the ? symbol in it. For any link with a ? in the string it basically splits the URL and...
  9. Replies
    3
    Views
    1,018

    .htaccess URL rewrite URL problem

    hi I'm having a problem with one of my htaccess rewrites:



    ReWriteRule ^link/(.*)$ goto.php?l=$1 [L]


    regular links are fine but any link with a ? in makes the rewirte strip the rest of the...
  10. Replies
    5
    Views
    918

    Re: Where can I start learning C++?

    I strongly recommended this site for C++ starting from the basics input/output to more advanced stuff

    http://www.cprogramming.com/tutorial/lesson1.html
  11. Re: c++ bbcode system problem with html = #include

    I've tried that and cannot get it going, heres what I'm using:



    function code($str){

    $match = array('#\[code\](.*?)\[\/code\]#se');
    $replace = array("'<table width=\"95%\"...
  12. Re: c++ bbcode system problem with html = #include

    well I worked out I need to use htmlentities but now I'm havnig problems with double quotes, it puts a \ before the quote, I need the quote to be left alone.
  13. c++ bbcode system problem with html = #include

    hello I have a very awkward problem, I've made a code system for normal code and one for php so that the output is highlighted however I have a problem with code that is C++.

    Due to the nature of...
  14. Replies
    3
    Views
    590

    Re: help with IsNumeric function

    thanks for replying cx323, if I understand the logic correctly, your looping backwards (from right to left) instead of forwards.
  15. Replies
    3
    Views
    590

    help with IsNumeric function

    hi,

    OVer the last few days, I've bee having serious issues trying to check input from the user and making sure its numeric, I recently found this function like many others but I cannot get it to...
  16. Replies
    1
    Views
    470

    Console Centre Text

    Hello, I'm making a console program in Dev-C++, I was just wondering if their is a method of centerig the text via the console window e.g. ( for a title )
  17. Replies
    5
    Views
    651

    Re: Removing duplicates from listview

    I deleted the code, I was basically counting the items added last to the listview and doing a little subtracting from the listcount so it doesnt start looking from 0.
  18. Replies
    14
    Views
    1,021

    Re: Why isn't it leeching the html??

    have you not considered using winsock instead, incredibly faster and from my own experience, easier to work with, upon receiving data, implement a timer and use a instr check.

    If Instr(1,...
  19. Replies
    5
    Views
    651

    Removing duplicates from listview

    Hello, I'm after some advice.



    Public Function RemoveDuplicates(List As ListView)

    Dim lRet As ListItem, StrTemp As String, lngCnt As Long

    lngCnt& = 0
    List.Visible = False
  20. Thread: Make md5 Hash

    by Shadows
    Replies
    1
    Views
    430

    Make md5 Hash

    I'm trying to make a md5 hash in vb, for example, I'm making a security scheme and want to make a md5 hash of say a hard drive serial within vb.

    But in all honestly, I've tried looking for md5...
  21. Replies
    2
    Views
    2,411

    Re: javascript, Auto insert into input/textarea

    no, still cant get it to work


    <img onClick="writeStuff(\'eshoutbox\',\'shoutm\',\':sad\')" src="images/smileys/sad.gif" />
  22. Replies
    2
    Views
    2,411

    javascript, Auto insert into input/textarea

    <html>
    <head>
    <script type="text/javascript">
    function writeStuff(theform, theinput, code)
    {
    var cache = document.theform.theinput.value;
    document.theform.theinput.value =...
  23. Replies
    1
    Views
    3,489

    Transfer JavaScript Variable To PHP Script

    Hello I need some help, I want to transfer information held in a javascript variable to a php variable, how can I achieve this? Is it possible?
  24. Replies
    3
    Views
    746

    Distribution Setup

    Hello, I have a question as I am distributing a application, I am using a third party OCX, what would be the best course of action to share the program as the end user may not have this ocx.

    Will...
  25. Replies
    2
    Views
    4,929

    Case expression not constant

    I've tryed implementing Case ELSE: into my console app but it was giving me problems, switching to this method, I'm receiving the following error:

    C:\Documents and...
  26. Replies
    2
    Views
    2,056

    Re: > 2nd Increment skipping CIN

    thank you for that, forgot entirely about the break; after each case
  27. Replies
    2
    Views
    2,056

    RESOLVED > 2nd Increment skipping CIN

    Hello folks, this is my first time posting in c++ forum hencing just starting wiht the language. Following a tutorial I've been playing around and decided to use Switch Cases instead of nested IF...
  28. Replies
    4
    Views
    1,127

    Re: Image shape, random rotate?

    No I can already create the images into the image box at runtime, I'm asking if its possible to actually adjust the position of the image in terms of making it misaligned, not straight.

    example:
    ...
  29. Replies
    4
    Views
    1,127

    Image shape, random rotate?

    Hello I have a question, when using the image control in vb, when displaying a regular image, the control is straight sided however is it possible to have the image crooked, like slightly misaligned...
  30. EXE Security, Method of file date check anyuse?

    Hello, I'm after some advice on the security of EXE files, mainly making them more difficult to crack, is checking for the date and file size a good method? or is it useless in making it more...
  31. Re: Checking for instance of string in collection

    loop for duplicates then clear the listbox and re populate
  32. Re: Checking for instance of string in collection

    I think I'm gonna have to loop the whole collection each addition but I'm worried about lag.
  33. Re: Checking for instance of string in collection

    I caould just use

    On Error Resume Next

    so when a error occurs, it jst continues adding the next lot, once loop finished, clear listbox then start populating listbox from collection but I'm...
  34. Checking for instance of string in collection

    Hello folks, I'm looking to make my own duplicates remover whichout using others available and am using a collection for this, as a collection I beleive can only hold one of the same item once, if...
  35. Replies
    5
    Views
    599

    Re: MsgBox Help

    I think this is what your after, just edit as necessary, use the CANCEL to stop the prog closing, this is some code to a old application of mine


    Private Sub Form_QueryUnload(Cancel As Integer,...
  36. Replies
    3
    Views
    574

    Stop Resizing Form

    Can someone give me a pointer in how to avoid the form being able to resize without losing the clip controls or adjusting the border, e.g. I want to keep the minimize button.
  37. Re: General Declarations Variables Prob

    ok thank you and the reason I'm switching is because 2005 is cause I wanna stay upto date altho it is quite daunting
  38. [RESOLVED] General Declarations Variables Prob

    Hello I'm having some trouble and cant find a solution in my .NET book, I'm using VS2005 since using VB6, my problem is whenever I declare a variable in the general declarations, I get the following...
  39. Replies
    3
    Views
    1,435

    Re: [RESOLVED] Winsock BytesTotal

    ok thanks
  40. Replies
    3
    Views
    1,435

    [RESOLVED] Winsock BytesTotal

    Could someone please inform us of the purpose of BytesTotal when receiving data with winsock, not that I'm having any problems when receiving data however as a habit of using it everytime, I would...
Results 1 to 40 of 120
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width