Hi, I am a programmer and have a assignment to develop a console application to convert pdf file (which may also have image) to html file. InshaAllah, I need...
Hi, My client is having a vb application to which he want some enhancements. He does not have the source code for the same. Is it possible to reverse engineer...
Good luck with that. As far as I know there isn't a way. Soren rahman masood <r_masod@...> Sent by: VisualBasic_Official@yahoogroups.com 09/03/2007 10:01...
Hello everyone - I can tell that 08-28-2007 falls on the 35th week using this VB6 statement: WeekNum = val(format(cdate("08-28-2007"),"ww")) My question is:...
Actually, I have seen some samples on how to create a PDF file from pure .Net code on CodeProject. I'm sure that you could use that to learn enough about the...
Don't know if you got an answer, but off the top of my head you couldn't do it without a little helper function that took the week number as a parameter,...
... Hello Dear, the week number start counting from the 1st of specified year and no matter whether it's any of the week. it depends on the year. when you get...
If you have the date of the Sunday of the first week= DateOfFirstWeek DateOfDesiredWeek = DateOfFirstWeek + (DesiredWeekNumber - 1) * 7)) ... No virus found...
Dear IT professionals: I am a beginner in the subject Object Oriented Programming (OOP). I was wondering if someone would mind telling me what should I do with...
Hello, will you please tell me what is the value of ww within double qoutes you supposed to be and also will u please explain how these two syntax works for my...
From a fellow student: the way i would solve this problem I would put everything related to the user in a user class file. Then i would initialize a new object...
Hi all, This is the whole of my code, courtesy of Shawn Hall, my issue is FileSystemObject and TextStream are not defined. Whats wrong with my code? are there...
I have an IR Temperature probe that is presently being used in DOS and the program will only run in windows "95" (yuck) or less. I need to update it to...
Is there a code in Visual Basic and Visual Basic.NET to track down installation of any type of games (flash games, games from CD such as Warcraft, Red Alert,...
Hello how does the IR probe connect to the pc? Is it through the serial port? If it is visual studio has a serial component that is very easy to use. I use it...
Well, there are several factors here. Am I to understand the probe is InfraRed... as in, IR connection to the computer?? Doesn't sound right b/c not a lot of...
Hello everyone, maybe one of you can help me with this, I am new to vb6 so please bear with me, I created a form with textboxes, lables, timer, and datepicker...
Yes it is a serial port and I do need any help possible.. I know a bit of c++ from awhile ago but NO visual basic. It seems to be somewhat the same in...
It uses the serial port for input. The old code is Borland Turbo C++. I need it to be Visual Basic the code is as follows: (I have Visual Basic 2008...
Hi all, I am having an issue converting Oracle BLOB data to byte. This piece of code works on most of the rows returned, but fails on a few. VB .Net code ms =...
Hi , i'm Atiq ,the student of MCS in IUB. I want to develop a database in vb 2005, i do'nt know how to conect a database of sqlserver2005 in vb2005. Tell me...
Okay, I'm extremely new to Visual Basic, new as in Funuguy (sp) type of new. I need to call a subroutine to do something and then bring it back to the...
You need to either pass the value(s) to the subroutine as "ByRef" parameters (the default) or use global variables. In general, variables are local to a...
Sounds like you need to use a FUNCTION and not a SUB. Something like: Function Add(ByVal NumOne as interger, ByVal NumTwo as Integer) RETURN NumOne + NumTwo ...
just call the subroutine if its in the same form i.e. note:this is from within a form private sub form_load( ) init_vars end sub private sub init_vars() x=0 ...
just call the subroutine if its in the same form i.e. note:this is from within a form private sub form_load( ) init_vars end sub private sub init_vars() x=0 ...
Hi I am using ASP.NET 2.0. I am getting problem in Response.write("<script>alert('msg');</script>"). It shows a parsing Error. If any one can give me any help...