-
Replied To a Post in vb only print half of page
Even so it is a very simple method to print a form it takes some code to get it right.The reason is the DPI of your monitor and the scale … -
Began Watching Uploader
I already created application, now I want to add the "Submit Software/image/etc page", So i am having my own website in weebly which allows me only 10MB per File, and … -
Replied To a Post in Uploader
I don't think you are allowed to send .exe files via email. That's why all of them are zipped. -
Replied To a Post in progress bar in form of table as Free download manager
It has been done often. Check these links out also for some codehttp://www.codeproject.com/Articles/18247/Two-Way-Progress-Bar https://www.google.de/search?q=pictures+of+progress+bars&espv=210&es_sm=122&tbm=isch&tbo=u&source=univ&sa=X&ei=F4nJUvSNEMfGtQaDwoDYDA&ved=0CDEQsAQ&biw=1208&bih=809 https://www.google.de/search?q=pictures+of+progress+bars&espv=210&es_sm=122&tbm=isch&tbo=u&source=univ&sa=X&ei=F4nJUvSNEMfGtQaDwoDYDA&ved=0CDEQsAQ&biw=1208&bih=809#es_sm=122&espv=210&q=free+download+manager+pictures+of+progress+bars&tbm=isch -
Replied To a Post in Error : InvalidCastException while trying to convert to integer
This will also work: Dim byDay As Integer = CInt(Trim(txtByday.Text)) but read the article on conversion http://www.owenpellegrin.com/articles/vb-net/converting-strings-to-numbers/ -
Began Watching Error : InvalidCastException while trying to convert to integer
Hello, I've been trying to create a function to calculate and return the total payment. RadioDay is a radio button with value of 7 while RadioHour is 70. Somehow I … -
Replied To a Post in Error : InvalidCastException while trying to convert to integer
Maybe use this: byHour = CInt(Val(Trim(txtByhour.Text))) byDay = CInt(Val(Trim(txtByday.Text))) -
Began Watching progress bar in form of table as Free download manager
Dear All , I am looking for a .net control to act as progressBar. it shoule have many empty boxes , and which progress , it gets filled. as in … -
Replied To a Post in progress bar in form of table as Free download manager
You find the progress control in the toolbox under common controls. Also you might want to check this link out: http://www.tutorialspoint.com/vb.net/vb.net_progress_bar.htm Your other post was probably deleted because you posted … -
Replied To a Post in unload child form in mdi form
Sorry, my first reply was more for vb6. Thsi should work in vb.net For Each frm As Form in Me.MdiChildren MessageBox.Show(frm.Name) Next -
Replied To a Post in unload child form in mdi form
O.K. this is the code to check for open child forms and to do something when there are open forms Dim F As Form For Each F In Forms If … -
Began Watching read the values from the textbox during created in runtime
hi guys, i am doing a project on vb, now the issues is i am not able to retrive the data from the textbox which in created during runtime. i … -
Replied To a Post in read the values from the textbox during created in runtime
Dim txtString as String txtString=Trim(textbox1.Text) This will work only if you have not created a textbox array. The best is to show us the code you use to create your … -
Began Watching VB 6.0 PC Diagnostics
Is it possible to create a program in VB 6.0 or VB.Net that diagnose a computer??? For example check any problems with hard disk or memory or any other peripherals... … -
Replied To a Post in VB 6.0 PC Diagnostics
There a few things you can check in vb6 code. Do a serch on google: check hard disk with vb6 and check this one out: http://msdn.microsoft.com/en-us/library/vstudio/xw6hsa4x(v=vs.100).aspx Do a search of … -
Began Watching Visual Basic 6.0 advanced source codes on FaceBook
There is a new FaceBook page for Visual Basic 6.0 advanced source codes: https://www.facebook.com/MicrosoftVB -
Replied To a Post in Visual Basic 6.0 advanced source codes on FaceBook
Excellent stuff there!! -
Began Watching unload child form in mdi form
hello today i start writing an application which uses mdi forms(its new to me). and i use the following code:(i set form1=idmdicontainer=true) , is this correct way to create mdi … -
Replied To a Post in unload child form in mdi form
You can close a child form by using: Me.ActiveMdiChild().Close() -
Replied To a Post in List box
So tell me what was wrong -
Replied To a Post in List box
Switch all the sorting in your listboxes off. Line 8 will not work like this. It is like I showed you or you have to use: If Not Len(Trim(entry)) = … -
Replied To a Post in List box
can you open your database with ms access and make sure you got the data in there you want? -
Replied To a Post in List box
If dim temp as string doesn't work you are returning not a string from your database? Check the properties of the column eftn in the database. Also maybe try this … -
Replied To a Post in List box
I don't understand what you mean by rs("eftn") is function -
Replied To a Post in List box
So what sort of data is contained in rs("eftn")? and does your program now as you want it to? -
Replied To a Post in List box
Maybe replace line 14 with: if rs("eftn") <> "" then temp= rs("eftn") else temp="---" end if -
Replied To a Post in List box
You have to find out why it stopped at line 14 - is there any data in rs("eftn") -
Replied To a Post in List box
Now in regards to your sorting, obviously you only can sort by one listbox at the time. So you add the first item to the listbox you want your data … -
Replied To a Post in List box
O.K. let' assume you got all the correct data. You now have to look at the data you add. If temp is empty, what you do than? You add data … -
Replied To a Post in List box
O.K. let's take it bit by bit. First check that the loop works and returns the correct entries. Rem everything out but the stuff that returns the strings. Dimension the … -
Replied To a Post in List box
Happy New Year to You too. From what I see you use trhe i as a counter but set it up like a loop. Just dim it outside your record … -
Replied To a Post in List box
Well looking at the second picture I can see thet you are not retrieving the data correctly or it is strored incorrectly. -
Replied To a Post in Please help. I have array.
O.K. I start again. From your few lines of text nobody can help you. Have a look at the many other post to get a picture of someone needs to … -
Began Watching Please help. I have array.
Please help. I have array. Debit Site Credit Site Line Voucher ArrData(0) 306 335 2 33500024 ArrData(1) 320 335 1 33500024 ArrData(2) 809 335 3 33500025 ArrData(3) 809 555 3 … -
Replied To a Post in Please help. I have array.
Is there a question -
Began Watching printing with vb6
my programe prints only after i close the programme why? -
Replied To a Post in printing with vb6
We need to see your printing code. -
Replied To a Post in List box
OK, did you check the data you are returning? You can use something like debug.print("Your Data") to see what your loop is returning. Nake sure the data is stored correctly … -
Replied To a Post in List box
If you get the samedata in each listbox you need to check how you retrieve the data. Where is your data stored in? -
Replied To a Post in List box
OK, but I can just see one listbox in your code. So I just give you a rough idea: Your existing code: If Not Len(Trim(rs("Email1"))) = 0 Then LstData3.AddItem rs("Email1") … -
Replied To a Post in List box
The trick now is to keep your listboxes synchronised via the index properties of the listboxes. Clear the listboxes, add the email to the first one get the index where … -
Began Watching capture "last used time"
Hi, im currently developing a picture viewer. i would like to capture the last used time of each picture into MS access database. in my picture viewer im able to … -
Replied To a Post in capture "last used time"
There are a number of different time formats you can use- depends what you want. Off Dream in Code http://www.dreamincode.net/forums/topic/337172-display-date-in-words/ Dim today = DateTime.Now 'Display time in different labels and … -
Began Watching Run vb.exe on other computer
Hello, i have created a vb project and have publish it. There is no problem in running the vb.exe in my laptop but when, i try installing the vb.exe in … -
Replied To a Post in Run vb.exe on other computer
Net Framework 4 CLR20r3 Error http://social.msdn.microsoft.com/Forums/vstudio/en-US/a7ed93ad-2923-48c4-9e51-cf0bd6d4e100/net-framework-4-clr20r3-error?forum=netfxsetup From what I have been reading it could be that you compiled your program to a higher Famework version then what is installed on … -
Began Watching List box
In a list box some email now I will that the corresponding name to the email rs.MoveLast rs.MoveFirst max = rs.RecordCount rs.MoveFirst LstData3.Clear List1e.Clear For i = 1 To max … -
Replied To a Post in List box
You are already using the Len() method. So you need to dim an integer like dim intLen and than assign it the Len of your email like: intLen= Len(Trim(rs("Email1"))). Alternatively … -
Began Watching How to call a premade form
Hello everybody, Ι want to make an application that does multiple mathematical actions such as solving second degree equations and indentities I've created all the forms I need for it … -
Replied To a Post in How to call a premade form
> I've created all the forms I need for it work but I cant create the main form that the user will use to choose what action will be executed, … -
Replied To a Post in Get number of copies when print vslexgrid vb6
Couldn't find the origanal anymore but maybe these links will help. http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/462996/vb6-default-printer-setting http://msdn.microsoft.com/en-us/library/microsoft.visualbasic.powerpacks.printing.compatibility.vb6.printer.copies.aspx If this doesn't help I need see your code and figure out what you are doing.
The End.