Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
E

eyes2007

@eyes2007
About
Posts
98
Topics
41
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • need to define a page range of richtextbox
    E eyes2007

    hi all i m working on a richtextbox. let me explain my problem the richtextbox contains some text. now i create a form that provides printing facility to print the contents of richtextbox (i have certain reason of doing so.) when it comes to provide the page range (page to - from) how can i handle that. i tried to control it by properties but it shows the wrong printing result. how can i determine the total pages, (some how i manages to get this) but the page range is a problem to me. can some one guide me thanks in advance.

    help everyone Falling down is not defeat...defeat is when u refuse to get up...

    Visual Basic help tutorial question

  • How to read text present on a image
    E eyes2007

    first of all have u tried google for this question. if not that's bad. u must understand the way of searching. ok now your answer. now its up to u how will u take this... best of luck. Dim Doc1 As New MODI.Document Dim inputFile As String = "C:\test\multipage.tif" Doc1.Create(inputFile) Doc1.OCR() ' this will ocr all pages of a multi-page tiff file Doc1.Save() ' this will save the deskewed reoriented images, and the OCR text, back to the inputFile Dim strRecText As String = "" For imageCounter As Integer = 0 To (Doc1.Images.Count - 1) ' work your way through each page of results strRecText &= Doc1.Images(imageCounter).Layout.Text ' this puts the ocr results into a string Next File.AppendAllText("C:\test\testmodi.txt", strRecText) ' write the OCR file out to disk Doc1.Close() ' clean up Doc1 = Nothing

    help everyone Falling down is not defeat...defeat is when u refuse to get up...

    Visual Basic csharp help tutorial

  • prohibit virtual printer to create pdf document
    E eyes2007

    hi all their is a richtextbox in my application that shows some text, also their is a print button to print the text of the richtextbox. my requirement is that i don't want to allow user to create pdf through virtual printer. i tried to restrict the virtual printer to show in the printer list but that could not be done. does some one has any idea then please tell me thanks in advance

    help everyone Falling down is not defeat...defeat is when u refuse to get up...

    Visual Basic help

  • query is too complex error msg
    E eyes2007

    hi all i am facing a problem called query is too complex. what exactly i m doing is i have a richtextbox. i copy some text from doc file and paste it into richtextbox. then run a insert query that will insert the whole rtf to the database but this cause the error message query is too complex. can some one tell me how to save the whole rich text of a richtextbox to a database, the field is memo. thanks in advance.

    help everyone Falling down is not defeat...defeat is when u refuse to get up...

    Visual Basic help database tutorial

  • Putting .ico files on buttons
    E eyes2007

    try add the icon files to the application resources then button.image = my.resource.iconfilename

    help everyone Falling down is not defeat...defeat is when u refuse to get up...

    Visual Basic question

  • printing a different report
    E eyes2007

    hi all i am working on a project that will store and display and print yellow pages. please suggest me what control should i use to get it done. i am not interested in crystal report. my requirement is to display the print the whole data in database in less time as possible. some body has any idea.

    help everyone Falling down is not defeat...defeat is when u refuse to get up...

    Visual Basic css database help

  • try to using datagridview without dataset
    E eyes2007

    hi all i m trying to use datagridview to display some data from database and i am trying this with out using dataset. what exactly i m trying is find some alternative from which i can fill datagridview directly with dataadapter or some thing like that. the moral is, i need to done my work (the loading) in just less than a second. does some have any idea thanks in advance.

    help everyone Falling down is not defeat...defeat is when u refuse to get up...

    Visual Basic css database help

  • how to detect changes in system date
    E eyes2007

    any change in system date thats just an idea and i have to read more about that component. help everyone

    Visual Basic help tutorial question announcement

  • how to detect changes in system date
    E eyes2007

    thanks christian i am thinking about to use file system watcher, what do u say and i am also keeping an eye on the date and time as well as u say. but their is a problem, if the user install the product on day 1, after 15 days he change the date and can use the product. how can i resolve that any idea. thanks again help everyone

    Visual Basic help tutorial question announcement

  • how to detect changes in system date
    E eyes2007

    hi all, i am developing an application (a 15 days trial version). can someone tell me how can i handle the situation, when the user change the system date, the application must not start. how can i detect the changes in system date. or if someone have any other logic to handle it anyway. thanks in advance help everyone

    Visual Basic help tutorial question announcement

  • datatype conversion
    E eyes2007

    hi all i have a textbox and i am trying to add some special characters to the textbox as the text typed. like user type 2000, that would be 2,000 and can be read as 2000 when i use the value. the second thing is in lost focus of textbox the text converted to 2,000 to $2,000.00. do some one has any suggestion. thanks in advance help everyone

    Visual Basic help

  • cannot-access-a-disposed-object
    E eyes2007

    hi christian thanks for reply i check it out, i am not disposing the frmupdate, and if i miss something can u tell me how can i figure it out. i tried this also but it doesn't work Me.Close() Me.Dispose() Application.DoEvents() frmupdatemodified.Dispose() frmupdatemodified = Nothing frmupdatemodified.Show() can you tell me how it can be done thanks

    help everyone NO ONE LIVES FOREVER

    Visual Basic help question

  • cannot-access-a-disposed-object
    E eyes2007

    hi all i have two froms, frmnew and the other one is frmupdate. frmnew is set the very first form to open when the application run. both forms contains a menu bars having two buttons on them. one button for exit the application and the other button allows the other form to open(.show). the code is something like Me.Close() Me.Dispose() Application.DoEvents() frmupdatemodified.Show() the last line frmupdatemodified.Show() shows the error cannot-access-a-disposed-object. what is going wrong please tell to solve the problem. thanks in advance help everyone

    Visual Basic help question

  • how to trace the control key in datagridview
    E eyes2007

    hi all i have a datagridview contains three columns with first column contains checkboxes. i am trying to do that, while keeping the control key pressed, try to navigate between cells. but when i try to do that it select only the first row or the last row of datagridview. some suggest me what should be done to do that or any thing else. thanks in advance. help everyone

    Visual Basic debugging help tutorial

  • set multiple checkboxes to true in datagridview
    E eyes2007

    hi all i have a datagridview with three columns. the first column contains checkboxes, the two and three contains text. the selection mode is fullrowselect. my problem is that, when multiple columns are selected while keeping the shift key pressed and then space is pressed with shift key all the checkboxes are supposed to be selected. i tried the code If flagShift = True And e.KeyCode = Keys.Space Then If DataGridView2.SelectedRows.Count > 1 Then For i As Integer = 0 To DataGridView2.Rows.Count - 1 If DataGridView2.Rows(i).Selected = True Then If DataGridView2.Rows(i).Cells(0).Value = True Then DataGridView2.Rows(i).Cells(0).Value = False Else DataGridView2.Rows(i).Cells(0).Value = True End If End If Next End If End If but that will check all the checkboxes except the last one. the last one remains unchecked. thanks in advance. help everyone

    Visual Basic help

  • difficult to handle datagridview with keyboard
    E eyes2007

    hi all, as per my projects needs i am using checklistbox. now the requirement is to multiselect the items of checklistbox with shift or control key pressed, which is not possible with this control. now i try to use the datagridview control as checklistbox. - i hide the column header and row header - the first column is datagridviewcheckboxcolumn - the second column is datagridviewtextboxcolumn for MOUSE handling - i write my code on datagridview_cellclick event (that works perfectly as per need) for KEYBOARED handling - i write the same code on datagridview_cellvaluechanged event ( their the problem is ) when i check the checkbox, i need to change the other controls value accordingly. but the event fires when selection changed. - i also try datagridview_selectionchange event but in that case i have to change the selection to get the values get change does some one have any kind of idea to solve that problem. thanks in advance help everyone

    Visual Basic help

  • question with chklistbox
    E eyes2007

    thanks for your fast reply. i am thinking about to make one, should i go for it. one more question why should microsoft has to make two different controls like checklistbox and listbox. why not they provide the checkbox fecility in the same control by making it a property. i am thinking about the reason behind it but i can't find the answer if some body knows then please tell me. again thanks help everyone

    Visual Basic question help

  • question with chklistbox
    E eyes2007

    hi to all is it possible with check list box that selection mode property set to multi extended if is possible than please tell me how can i do that and if not possible then should i go for a custom control in that it is possible. any help is highly appreciated thanks help everyone

    Visual Basic question help

  • check parent when child is checked in treeview
    E eyes2007

    the problem is 1. when all child and parent nodes are unchecked, then , when child node is checked then i need to also check its parent node. thats exactly what i want to do. what i have done 1. when a parent node is checked, all of its child nodes is checked. 2. when a parent node is unchecked, all of its child nodes is unchecked. 3. checks and unchecks all the parent nodes and child nodes with the help of buttons. all these things are using some sort of recursive function and thats cause the problem. i use all that in aftercheck event of treeview any help will be thankfull help everyone

    Visual Basic help question

  • check parent when child is checked in treeview
    E eyes2007

    hi all when i check the child node of a treeview it will automatically check the parent node of that child node. can some one tell me how can i do that i am trying to do that but the recursive procedure (that will check all the child nodes when the parent node is checked) is making it difficult. thanks in advance help everyone

    Visual Basic help question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups