• Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    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.
  • Member Avatar for Minimalist
    Minimalist

    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
  • Member Avatar for Minimalist
    Minimalist

    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/
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    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)))
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    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
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    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... …
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    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
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Visual Basic 6.0 advanced source codes on FaceBook

    Excellent stuff there!!
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in unload child form in mdi form

    You can close a child form by using: Me.ActiveMdiChild().Close()
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in List box

    So tell me what was wrong
  • Member Avatar for Minimalist
    Minimalist

    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)) = …
  • Member Avatar for Minimalist
    Minimalist

    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?
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in List box

    I don't understand what you mean by rs("eftn") is function
  • Member Avatar for Minimalist
    Minimalist

    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?
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in List box

    Maybe replace line 14 with: if rs("eftn") <> "" then temp= rs("eftn") else temp="---" end if
  • Member Avatar for Minimalist
    Minimalist

    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")
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    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.
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Please help. I have array.

    Is there a question
  • Member Avatar for Minimalist
    Minimalist

    Began Watching printing with vb6

    my programe prints only after i close the programme why?
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in printing with vb6

    We need to see your printing code.
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    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?
  • Member Avatar for Minimalist
    Minimalist

    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") …
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    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, …
  • Member Avatar for Minimalist
    Minimalist

    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.