Search:

Type: Posts; User: gvgbabu

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Re: placing shapes in excel using vb.net 2010

    thank you Chris

    The problem is with using both vs 2010 and excel 2007 together. So i installed office 2013. it worked perfectly.
    solved my problem.
  2. Re: placing shapes in excel using vb.net 2010

    the same code worked for vs 2005 and excel 2007.

    Now i am getting problem with VS 2010 and excel 2007
  3. Re: placing shapes in excel using vb.net 2010

    i imported the above three cases as you mentioned.
  4. Re: placing shapes in excel using vb.net 2010

    chris

    i am getting same error above mentioned while executing the below lines.


    textRectangle.TextFrame.Characters.Text = "Hello again"

    ...
  5. Re: placing shapes in excel using vb.net 2010

    thank you chris for your reply,


    i am getting the same thing in the excel as you posted. But when modifying the attributes of the shapes i am getting the problem.
    in your example, i want no...
  6. [RESOLVED] placing shapes in excel using vb.net 2010

    hi every one

    i am creating a program which places shapes like lines, rectangle, triangle etc. using vb.net 2010 version.
    i am getting error when modifying the attributes like line weight,...
  7. Re: error while opening the excel file from vb.net

    i solved my self using the below

    tools-->Add sharepoint connection

    it solved my problem

    thanks you swinkels for you support

    gvg
  8. Re: error while opening the excel file from vb.net

    i am using visual studio 2010 ms office 2007 in windows 10
    is it compatability issue or anything else?

    please help me how to solve this problem

    gvg
  9. Re: error while opening the excel file from vb.net

    thanks for your reply Peter Swinkels ,

    this is my code with a windows form and 3 buttons on the form


    Imports Microsoft.Office.Interop
    Imports Excel = Microsoft.Office.Interop.Excel

    Public...
  10. error while opening the excel file from vb.net

    hi every one

    i am getting error while opening an excel file from a vb.net application

    Unable to cast COM object of type 'Microsoft.Office.Interop.Excel.ApplicationClass' to interface type...
  11. Re: how to draw lines and more from drawing tools in excel using vb.net

    thanks westconn1

    it's worked.
  12. Re: how to draw lines and more from drawing tools in excel using vb.net

    thanks vbfbryce,

    yes that can possible. i am inserting a triangle. so, instead of inserting three lines i am going for triangle. is there any option to insert lefttriangle or modify with any...
  13. Re: how to draw lines and more from drawing tools in excel using vb.net

    my requirement is lefttriangle but there is only Righttriangle and there is no options for left triangle
    so, is it possible to insert triangle slope from right to left using vb.net
  14. Re: how to draw lines and more from drawing tools in excel using vb.net

    thanks westconn1

    its worked.
  15. Re: how to draw lines and more from drawing tools in excel using vb.net

    thanks,
    it worked for me.

    one more thing that i inserted right angle triangle, it inserted filled righttriangle. i would like to know how to use no fill property of that triangle.
  16. Re: how to draw lines and more from drawing tools in excel using vb.net

    thank you vbfbryce for your reply

    your code inserting the line or arrow at the starting point of the excel cell.

    But i would like to ask you that is there any way to insert the line starting...
  17. Re: how to draw lines and more from drawing tools in excel using vb.net

    as per your advice i started to record macro

    when i place lines and arrows from insert->shapes as per my example attached above. It did not record any thing
    except sub and end sub.
    Sub Macro4()...
  18. Re: how to draw lines and more from drawing tools in excel using vb.net

    as per your advice i started to record macro

    when i place lines and arrows from insert->shapes as per my example attached above it did not record any thing
    except sub and end sub.
    Sub Macro4()...
  19. Re: while inserting an arrow in excel using vb.net

    hi

    what is the problem above and how to solve it?

    plz give a solution
  20. while inserting an arrow in excel using vb.net

    hi all

    i am executing a vb.net program to write an excel for inserting an arrow in it.

    Dim shp As Microsoft.Office.Core.Shape
    shp = ows.Shapes.AddLine(114, 504, 114, 462)

    ...
  21. Replies
    4
    Views
    896

    Re: array in for loop

    thank you very much jmcilhinney for your quick reply.
    yes, my real scenario involves a large number.
    in the for loop iteration 4 is not constant. ie it may be p1, p2, p3, p4, p5, p6........... so...
  22. Replies
    4
    Views
    896

    array in for loop

    hi all,

    is it possible to create array variable in a for loop like
    p1 = 2, 3, 17, 5, 6
    p2 = 8, 9, 1, 13
    p3 = 7, 10, 12, 15
    p4 = 11, 14, 16, 4

    for i as integer = 1 to 4
  23. Re: how to draw lines and more from drawing tools in excel using vb.net

    thank you paul
    I am writing an excel through vb.net program. I want to draw a diagram in excel with writing. i think it is not a VBA question.
    any example how to do it with excel drawing tools ...
  24. how to draw lines and more from drawing tools in excel using vb.net

    hi all

    i would like to know how to draw figures in excel programically with lines from drawing tools of excel using vb.net (as in attached pdf file).
    So can any one guide me how to do it with...
  25. Re: when doing addition of two array elements giving error

    thank you jmcilhinney for your reply

    dim array as object (,)= new object (25,8){}
    the array is storing strings, doubles and integers
  26. when doing addition of two array elements giving error

    hi all
    i am doing a some program using vb.net. when am adding two array elements with "+" sign, its not adding two elements. its giving the result like the below:

    Mv= array(1,4)+array(1,5)

    if...
  27. Replies
    3
    Views
    809

    how to split this type text in vb.net

    hi
    i have text with numbers i want to split and copy into an array

    1 TO 8 10 12 15 16 18 TO 24

    how to split this type of text into array like 1 2 3 4 5 6 7 8 10 12 15 16 18 19 20 21 22 23 24...
  28. Re: how to draw lines with arrows not shapes in excel using vb.net

    hi

    i want exactly shown in the attached model jpg file.
  29. how to draw lines with arrows not shapes in excel using vb.net

    hi everyone

    i would like to know that how to draw lines and arrows with single line not shapes in excel using vb.net.

    thanks
    gvg
  30. Re: How to see the windows form in a dll application

    i am not editing compiled dll. i want to edit it in dll source project only. i cound not see the edit designer when i right click on form in solution explorer.
    i can see view class diagram only i...
  31. Re: How to see the windows form in a dll application

    further i can see form1.designer.vb and form1.resx
  32. Re: How to see the windows form in a dll application

    thanks for your replies.
    @kebo
    i want to edit from the original file that i compiled.
    @dday9
    i cound not see the edit designer when i right click on form in solution explorer.
    i can see view...
  33. Re: How to see the windows form in a dll application

    Thank you dday9 for your quick reply. Yes exactly I want to edit the form..
  34. How to see the windows form in a dll application

    Hi everyone,
    I have created a DLL application. In the application i have created one form for getting information from the user. Now i want to modify the form but I couldn't see form. So please...
  35. Replies
    3
    Views
    855

    Re: Splitting the string between TO

    Thanks for your suggestions Paul and passel
  36. Replies
    3
    Views
    855

    Splitting the string between TO

    Hi every body
    Please help me how to do.
    I have a string like, "1, 3, 5 TO 9, 11 etc
    I want put in an array like 1 3 5 6 7 8 9 11
    I am able to split the string using ", "
    how to do 5 TO 9 as 5...
  37. how to round down integer value to nearest 25 in vb.net

    hi
    is it possible to round down integer value to nearest 25 in vb.net
    like floor function in excel.
    ex: floor(123,25)=100, floor(158,25)= 150 etc.
    i searched different places but i could not...
  38. Replies
    12
    Views
    5,704

    Re: how to sort arraylist with strings in vb.net

    i am successful in splitting the string part and integer part and also sorted the integer part. Now the problem is joining the string part C to the sorted integer part. this is my code

    Dim colgr...
  39. Replies
    12
    Views
    5,704

    Re: how to sort arraylist with strings in vb.net

    i am a newbie. so i started with the old framework. later on i will shift to new framework.
  40. Replies
    12
    Views
    5,704

    Re: how to sort arraylist with strings in vb.net

    vb 2005 that is .netframework 2.0
Results 1 to 40 of 61
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width