Search results for query: *

  • Users: aspfun
  • Content: Threads
  • Order by date
  1. A

    Publish and prerequisite

    I use Publish to compile Win form app in VS2010. I select "Vs2010 tools for office runtime" in prerequisites and create a setup file. Once run setup got an error said: "Fatal error during installation" "Vs2010 tools for office runtime" failed to install. How to fix this error? Do I need to...
  2. A

    Call sub in MDI child form from MDI parent toolbar

    I created a few toolbars in parent form. How to call sub in MDI child form from MDI parent toolbar?
  3. A

    How to code to open form as 85% of user's screen (width and height)?

    Since screen resolutions in all pcs are different, set static form size is not good practice. I knew how to set width and height of screen in fix number. How to code to open form as 85% of user's screen (width and height)?
  4. A

    Run schedule task in server without Excel and Crystal report being installed

    I created a Windows desktop app to export Excel and Crystal Report to a file server. It works fine in my pc (win7, vs2010) but once I move exe file to one server and set up a schedule task to run exe file, it failed to run. I found out that this server do not install Excel and Crystal report. Is...
  5. A

    How to load crystal report if report (myorder.rpt) is in project folder?

    How to load crystal report if report (myorder.rpt) is in project folder? How to finish "what path here"? Dim cryRpt As New ReportDocument cryRpt.Load(what path here & "\" & "myorder.rpt")
  6. A

    Mobile application

    I was assigned to develop a app which will run on all mobile device such as iphone, xoom. How to start it? What tools do I need?
  7. A

    Recursively copy folders

    I copied code from the link below. It works fine. How do I recursively copy all files and directories? - vbCity - The .NET Developer Community I modify code as below and want program working as two goals" 1) If the size of source folder and destination folder are the same, skip; 2) If the size...
  8. A

    Add text in recursively copy

    I copied code from the link below. It works fine. How do I recursively copy all files and directories? - vbCity - The .NET Developer Community Now, I want to add a line to display text like: "Copying file xxxx" for each file being copied. I created a label and code like label1.text =...
  9. A

    View crystal report in pop-up page

    I used code below to open crystalreportviewer. I works fine at the same brower but not working in pop-up page. At pop-up page it prompts for SQL server login name and password. How solve this problem? Dim rpt As New ReportDocument rpt.Load(Server.MapPath(ReportName)) rpt.SetDatabaseLogon("sa"...
  10. A

    How to create shortcut for program?

    I created a setup project and tried to create a shortcut for it in "User's desktop" but never work. When I click the shortcut I created, it always open Desktop screen instead of open exe file. How to create shortcut for program?
  11. A

    How to add a checkbox column at first column of datagridview?

    How to add a checkbox column at first column of datagridview? After adding, how to code to "check all" or "uncheck all"?
  12. A

    Setup project install SQL store procedure

    In one windows project, I created a setup project. It is working fine. Is it possible to add SQL scripts(to create database and store procedures) into setup project and run scripts automatically once client user install the application?
  13. A

    Get value of check box in datagridview

    I added a checkbox column in the first column of datagridview (not datagrid). Once data loaded to datagridview there are three columns will display: check (check box), ID, description How to get value of ID when user checks the check box at that row?
  14. A

    Sync project

    I was assigning a vb.net project as descript below: User uses laptop. 1)Most time user is off line. Need to create a “add new” form to let user input new records. Data will sore in laptop Access mdb file or SQL express. 2)Once user use wireless to connect company server, data in laptop need...
  15. A

    Set datagridview size dynamically

    How to set datagridview size (height) dynamically? I need to set up a datagridview height on run time based on how many record will load.
  16. A

    How to call a JS function on the form loading?

    How to call the function validate() on the form loading? There is a form in which another program will fill some text boxes automatically. I need this JS function to test the value of text boxes and give user a alert if any text box is empty. <script type="text/javascript"> function validate()...
  17. A

    Label autosize question

    When I drag a label control from toolbox to form, default autosize is true. I need to change to false every time. (I do not like true) How to make default value as false as default value?
  18. A

    How to load a image to picturebox?

    I code to load an image below. It works fine. Picturebox1.Image = Image.FromFile("c:\logo.gif", True) But, code below do not work. What is wrong? (images is a subfolder under app Order) Picturebox1.Image = Image.FromFile(".\images\logo.gif", True)
  19. A

    Windows app master form

    Does windows app have master form the same as master page in asp.net? With master page I can add company logo and app name only one time.
  20. A

    How to view my posts only?

    How to view my posts only?
Back
Top