Search results for query: *

  1. C

    Question How to get a progress bar like in this picture?

    Hello, I need a progress bar, like this: But by as you know, by default we get a progress bar like this: Please help me to code/get the progress bar like in the first picture, I do NOT need the buttons. I need it to be, when i click on a button (lets say Button1), The progress should...
  2. C

    Reading from text file and storing into an array

    Thank you for the reply. We have not covered RegEx yet in my class so I was not comfortable using it. Instead I came up with a new algorithm for my If condition since all of the product IDs end with 3 letters. If strTemp.ToUpper Like "??[A-Z][A-Z][A-Z]" Then Thanks again for the help :)
  3. C

    Reading from text file and storing into an array

    Hi, I am given a problem where I have a text file that contains the following: 12AVX 5 23ABC 8.97 23TWT 4.69 34ZAB 12.5 91BAN 34.67 Some of the instructions include "Define a structure named Product. The structure should contain two member variables: a String variable to store the item number...
  4. C

    login in please help am new!

    Protected Sub btnLogin_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnLogin.Click Dim command As New SqlClient.SqlCommand Dim adapter As New SqlClient.SqlDataAdapter Dim dataset As New DataSet 'set up the connectiom Dim connection As...
  5. C

    GDI Trackbar Value Problem

    Hi, i am currently devloping a set of fully GDI written controls, just 4 fun and to improve my GDI skills :D Anyway, my problem is as simple as that i don't get a trackbar to show the correct value when i scroll it.. Heres a picture of my form: As you can se, i got a box on each side of the...
  6. C

    Question Two Questions.. about releasing

    Sorry... the first one is stupid... 1-Hi! In VB6 when I wanted to compile, and the .exe ready, I use File-->Compile, and a Save Dialog appeared, so I had the .exe file ready where I want.. But in VB2005, there are 2 folders in my project folder... Debug, and Release... Inside each of those...
  7. C

    Sort a multidimensional array

    Hi! I was looking for a function I need in internet but I didn't find it... I need to sort a multidimensional array(matrix).. for example Original matrix 1,b,3 2,c,5 3,a,1 I need a function, lets call it magic() xD with 2 arguments, the matrix and which col to sort first... so.. the result of...
  8. C

    Question Encrypt a part of a file

    Johnh!!!!! It worked !!! Your code worked!!!!! Thank you very much!!!!!!!!!!!! I'm so happy!!!!!!!! ;)
  9. C

    Question Encrypt a part of a file

    Satal Keto! I tried your code, it seems good,, but in the part of the "IF 33" the algorithm eats 16 bytes, and also 16 bytes appear at the end... For example 1........2........3........4........5........6........789... 30 31 32 33 34 35 36....100 101...
  10. C

    Question Encrypt a part of a file

    Hi! I need your help! This is breaking my head! I'm new in Visual Basic 2005... I used to programme in VB6 and this is very different.. well... I need to encrypt only a part of a file (a binary file), the first 140 kb for example... I'm trying but the resulting file (encrypted) has 16 bytes...
  11. C

    Download image from php

    Couldn't get it to work.
  12. C

    Download image from php

    There is a plain php page with an image, there is no source or image source. Just a white php page with an image. What i want to do is to get the picture to the picturebox on the easiest way.
  13. C

    Comparing two images

    JohnJ, thanks. It worked. Close thread.
  14. C

    Comparing two images

    I'm sorry but i have no clue about what to do next.
  15. C

    Comparing two images

    I'm currently working on an application witch takes two images and comparing them on how equal they are. I want it to display in "%" how equal the pictures are. Like: Picture 1 (orginal) - Picture 2 (Edited) The picture is 67% equal Anyone know how to do this, i have been s earching...
  16. C

    Image Recognition/Compare

    Im gonna make a program to a webbrowser game. There is a captcha, there with pictures of cars. i need to compare these two pictures and i want the result of equalnes in PERCENT. So if the picture are 75% equal then it click on the picture. 1. 2.
  17. C

    hel reading data socket

    Hi people, i need somoe help reading data from sockets! i need to send a long string containing information, the problem is when server "receives" the string, it comes divide into 2 parts, so how i read the whole string sended to the end, and not splited into 2 pieces? here is the code that i...
Back
Top