Hello guys. Someone knows how to use the "image and fax viewer for windows" in VB6? Thank you for your help. Alessandro [Non-text portions of this message have...
Hello everyone. Can i upload my VB 6.0 Application system that i develop to the internet so that users can access it anywhere with internet connections? should...
i am making my own command button.i want to add a property which is the style just like the normal command button but the style property of a command button is...
hi guys...i want that whenever the mouse pointer is pointed at the command button. the command button's color will change and then after that the command...
... Set Command.Style to Graphical and use this code for it: Private Sub Command1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) ...
Les aviso que soy nuevo en esto de ASP.NET Tengo el siguiente UPDATE y no me graba nada. Alguien sabe que pasa? El tema es que que quiero bajar los datos...
Please stop this mail !! Please block this ID. Regards Vipul P Please don't print this e-mail unless you really need it . Save FOREST by reducing use of paper...
I did clean up all the older email... I'm nor sure how this person is getting through. I keep baning them. Darrin J. Calcutt, CEO, COO Canadian Locomotive...
can anyone help me how to subtract dates exmaple date employed is May 3, 2005 and minus the date today for exmaple February 10, 2009 the answer will be 3 years...
Hi I want to keep my SQL server data base on a web server and connect it from my desktop any where and edit into and get report from that on any PC through...
It seems that you want to do lots of things but not sure what you want to do. First of all you cannot keep data in the webserver you need to have a database...
Hello, all. I have a question regarding copying selected (unseen) cells from one sheet of an Excel Workbook and pasting them to selected (known) cells of...
Hi dougp1259, Once you located the data in column A, you can use the Row property to get the row number and use that to copy the data in column B. For...
I have a form with a logo on it. I allow the user to change the logo picture width and height from my initial settings with a textbox for LogoWidth and...
I am confused as to how to declare variables. I want to write a program that inputs the month as 01 january, 02 february...etc. Based on the number entered -...
If you want to receive a number for a month and then output based upon the input, I would use an array such that: Option Base 1 ' Set default array base...
Here is what I have so far.....even though I know it is wrong: Module Module1 Sub Main() Dim month As Integer month = "01,02,03,04,05,06,07,08,09,10,11,12" ...
You are confused. Integers are whole numbers. Strings are text. Boolean is T/F. You can't declare an integer and then assign a string to it. Furthermore, is...
Hi Group, We are looking for a developer who has good exposure with visual basic and crystal reports. Interested candidates write back to me or call me ...
Hi, in case you can allow working from home then please contact me. I am from Guwahati, Assam. I have around six years of experience in developing software...
I would like to write a program to generate all permutations of n items taken r at a time, where n would be a specified range of values and r would be the...
Hi picardmaneuver, Doing the P(3, 3) like your example is easy. You can do something like this: For i = 0 To 2 For j = 0 To 2 If (j <> i) Then For k = 0 To 2 ...