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

ejaz_pk

@ejaz_pk
About
Posts
86
Topics
57
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to use google map in vb.net application
    E ejaz_pk

    Can you please give me any sample code to get any idea to get the distance and fastest route? Thanks in advance

    Visual Basic csharp algorithms performance tutorial

  • How to use google map in vb.net application
    E ejaz_pk

    Thanks for the reply. Is there a way to calculate the fastest route between multiple routes? Thanks in advance Regards, Ejaz

    Visual Basic csharp algorithms performance tutorial

  • How to use google map in vb.net application
    E ejaz_pk

    Thanks for your reply. Actually my next step is how to put marks on different location on the map? Thanks in advance Ejaz

    Visual Basic csharp algorithms performance tutorial

  • How to use google map in vb.net application
    E ejaz_pk

    Is there anybody who knows how to use google map in vb.net application for route optimization? Thanks in advance

    Visual Basic csharp algorithms performance tutorial

  • search files on hard drive by vb 6.0
    E ejaz_pk

    I just want file names list and path of the files.

    Visual Basic question

  • search files on hard drive by vb 6.0
    E ejaz_pk

    How can I search all the files available on my computer (C,D,E,F...) drives like search functionality in windows. The application should search the subfolder as well in the drives. I want to have a list of all the files available in my computer. Thanks In Advance

    Visual Basic question

  • Multilingual Application In VB.net Pocket PC
    E ejaz_pk

    If I add different resource files for different languages then I need to add lots of line to set the controls text at run time. Can't we use culture method to change the language of the application with single line of code? I read about this on internet and saw different codes for vb.net windows application but when I tried to apply this on pocket pc application it did not work for me. Thanks In Advance Regards, Mohammed Ejaz

    Mobile question csharp

  • Multilingual Application In VB.net Pocket PC
    E ejaz_pk

    How can I use more than one culture in vb.net pocket pc application? I am using a combo box for the user to select the language and want to change the application language (lable and buttons text) according to the selected language. The default language is English. If user selecte any other lanugage from the drop down list like (arabic,french) then it should the whole application to that language. Where I can download the arabic fonts for the pocket pc application? Any idea how I can do this? Thanks In advance

    Mobile question csharp

  • Datagrid and Datatable In Pocket PC Vb.net2005
    E ejaz_pk

    I am working on a pocket pc application by using vb.net 2005. I have 2 questions about the datagrid and datatable. 1. What I want is that when the datagrid is populated then application should check the datagrid first cell value and if it is null then it should change the backcolor of that row to Red. 2. I am creating a datatable on form load event and the adding rows by executing the sql statement by using datareader. Now I want to add a tablestyle to that datagrid and want to set the width of the datagrid columns. Simple is that how I can set a datagrid table style while setting the datasource to datatable? Thanks In advance

    Visual Basic csharp database question

  • Datagrid In VB.net pocket pc application
    E ejaz_pk

    I am working on a pocket pc application by using vb.net 2005. I have 2 questions about the datagrid and datatable. 1. What I want is that when the datagrid is populated then application should check the datagrid first cell value and if it is null then it should change the backcolor of that row to Red. 2. I am creating a datatable on form load event and the adding rows by executing the sql statement by using datareader. Now I want to add a tablestyle to that datagrid and want to set the width of the datagrid columns. Simple is that how I can set a datagrid table style while setting the datasource to datatable? Thanks In advance

    Mobile csharp database question

  • Pocket Pc In VB.Net
    E ejaz_pk

    I am developing a pocket pc application in vb.net 2005.I am using buttons and listview on my form. I have 3 Questions about the application. 1. Is there any property to add image on the button control? 2. Is there any property to draw grid lines in the listview? 3. How can I create a multilingual application? 4. How can I transfer data from my desktop pc to my pocket pc through FTP,HTTP etc... Thanks in advance.

    Visual Basic question csharp css

  • decimal value in .sdf database
    E ejaz_pk

    :thumbsup: Thanks for the help. As I mentioned that I am using .sdf (sqlserverce) database which used for pocket pc applications. Actually there was problem in the table structure of my database. I was using int type of field in the table. Now I have change that field type to float and its working fine. Thanks every body

    Visual Basic csharp database help question

  • decimal value in .sdf database
    E ejaz_pk

    I am working on a pocket pc application by using vb.net 2005. I create one table called products and want to store the costprice in decimal in products table. E.g:- if I enter 50.5 for costprice and save it then it automatically changes to 51 which is creating problem for calculation. How I can store decimal value in the table? Anybody knows how I can solve this? Thanks in advance

    Visual Basic csharp database help question

  • pocket pc datagrid in vb.net
    E ejaz_pk

    I am using datagrid in my vb.net (pocket pc) application. I am using the following code to set the tablestyle to the datagrid to adjust the column width

      Dim ts As DataGridTableStyle = New DataGridTableStyle
    
        ts.MappingName = "Products"
    
        Dim Product As DataGridTextBoxColumn = New DataGridTextBoxColumn
        Product.MappingName = "Product"
        Product.HeaderText = "Product"
        Product.Width = 130
        ts.GridColumnStyles.Add(Product)
    
        Dim Qty As DataGridTextBoxColumn = New DataGridTextBoxColumn
        Qty.MappingName = "Quantity"
        Qty.HeaderText = "Quantity"
    
        Qty.Width = 75
        ts.GridColumnStyles.Add(Qty)
    
        Me.DataGrid1.TableStyles.Add(ts)
    
        Me.DataGrid1.TableStyles(0).GridColumnStyles(0).Width = 100
    

    After binding the datagrid I use this code to set the datagridtablestyle but it only show my one column me nothing even it does not return the values in the datagrid with original tablestyle. It show only row header in the grid but does not show the columns. Any idea how I can solve this problem???? Thanks In advance

    Mobile csharp css wpf wcf

  • DataGrid In Pocket PC
    E ejaz_pk

    I have 2 questions for pocket pc application which I am building in vb.net 2005. 1. I am using dataadapter to fill and then bind to datagrid which takes time. I there is any other fast way to bind the data?? Can we bind datareader with datagrid through loop??? 2. I want to allow user to edit value of data grid at rum time for only one column not for all the columns. Where can I find an editable datagrid on the web??? Thanks in advance

    Mobile csharp css question

  • Form unload method in pocket pc application
    E ejaz_pk

    I am working in pocket pc application in vb.net by using microsoft visual basic 2005. What I am trying to do is to have a confirmation when user close the application. if user click on close button of the form then application should promot to confirm and if your click on yes button application should exit otherwise it should remain on that form. Is there any form unload event in pocket pc form? Thanks in advance

    Mobile csharp question

  • How to show the changes Updated by other user on network
    E ejaz_pk

    I am usin microsoft access as backend database and using dataenvironment in my vb application to connect the database. The problem I am facing with dataenvironment is when I open any recordset from the dataenvironment it get all the records and hold it in the recordset and if I make changes in any field of the record it does not appear to the other users of the network. What technique should I use to solve this problem? THanks in advance.

    Visual Basic

  • Microsoft Access Database Backup by vb 6.0
    E ejaz_pk

    I am using vb as front end and microsoft access as backend database. What I want is when user close the application it should automatically take the backup of the access database. How I can solve this problem? Thanks in advance

    Visual Basic

  • How to read and write Encrypted file by vb 6.0
    E ejaz_pk

    Hi, I am working on a project where I need to read and write the database password from external source not from database. For which I am trying to create a file in encrypted format. The file will have two fields(1. UserName,2. Password) Any Idea how I can solve this problem? Thanks In Advance :doh:

    Visual Basic database help tutorial question

  • Login and Login Status Control In Asp.net
    E ejaz_pk

    I am using login and loginstatus controls in my application. When I logged In It change the login status control text to logout which is fine but when I click the logout button it does not take me to the login page again.And how I can stop user to go back by clicking back button in the browser once he is logged off. How I can store login username in session variable by using login control? THanks In advance Ejaz

    ASP.NET csharp asp-net 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