User Profile

Collapse

Profile Sidebar

Collapse
jay manu
jay manu
Last Activity: Feb 14 '11, 09:28 AM
Joined: Feb 3 '11
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Is it possible to Export an excel data sheet in to Arcmap Framework?

    I need to export excel data sheet to ESRI Arcmap10 frame work. Join using lat lons and make new layers and save it.

    Can anyone help me to find the solution?
    See more | Go to post

  • Can I import an excel file to Arcmap10 using Arcpy?

    I have to import an excel file to Arcmap10 using arcpy script. file name,file path etc will be selected from fileDialog().

    Can anyone help me, how i can import the selected excel file into Arcmap10 on a button click
    See more | Go to post

  • Is there any way that i can sort a List like this?

    Code:
    List =[("Rail",2),("Airport",6),("Interstate",1),("jack",5),("Port",3),("intermodal",4),("MinPopulation",8),("Etc",7)]
    i want to sort it like:
    Code:
                      "Interstate",1
                            "Rail",2
                            "Port",3
                            "intermodal",4
    ...
    See more | Go to post
    Last edited by bvdet; Feb 8 '11, 02:43 PM. Reason: Add code tags

  • Actually I need to create a button
    Code:
    class myApp(wx.Frame):
    def __init__(self,parent,id):
            wx.Frame.__init__(self,parent,id,'Export Form', size=(500,500))
            panel =wx.Panel(self)
    #Creating Buttons
            global button1 = wx.Button(panel,label="Export",pos=(75,120),size=(50,30))
    in another click event i wnt to make this button disable, i tried with your sujjestion, it didnt worked....
    See more | Go to post
    Last edited by bvdet; Feb 7 '11, 01:53 PM. Reason: Add code tags

    Leave a comment:


  • How to access a global object in another function?

    i have two buttons, which are disabled on page load,
    when i select one radio button i have to make that button enable.
    But when i write button1.Enable( ) in the radibutton click event, its showing an error "global object 'button1' not defined.

    How can i tackle this problem.

    How can i access a global variable in another function?
    See more | Go to post

  • Is there any control in wx.python which is equivalent to FileUpload?

    I need to open a file upload window on a button click. From that window I must be able to select excel files. Also I want to get the filepath. Can anybody help with this.
    See more | Go to post
    Last edited by bvdet; Feb 5 '11, 01:37 AM.

  • jay manu
    started a topic How to correct attribute error?

    How to correct attribute error?

    'myApp' object has no attribute 'closebtn'

    Code:
    import wx, os, shutil, fnmatch, sys, textwrap, re
    import wx.lib.intctrl
    
    class myApp(wx.Frame):
        def __init__(self,parent,id):
            wx.Frame.__init__(self,parent,id,'Export Form', size=(500,500))
            panel =wx.Panel(self)
    
            #Creating Static texts
            text1 =wx.StaticText(panel, -1,"Select Data Source",(150,10),(150,-1),wx.ALIGN_CENTER)
    ...
    See more | Go to post
    Last edited by bvdet; Feb 3 '11, 02:25 PM. Reason: Add code tags
No activity results to display
Show More
Working...