Search:

Type: Posts; User: ramesh017

Page 1 of 3 1 2 3

Search: Search took 0.06 seconds.

  1. Replies
    1
    Views
    618

    VS 2010 disable button column's cell

    Hi

    I have four columns

    col1 - gridveiwcol
    col2 - gridveiwcol
    col3 - gridveiwcol
    col4 - buttoncol

    based on the col1's value im disabling or enabling the remaining columns. It works fine...
  2. VS 2005 Re: Copy tables from db1.accdb to db2.accdb using vb.net

    i have few more tables in the destination should nt get affected by this copying..
  3. VS 2005 Copy tables from db1.accdb to db2.accdb using vb.net

    Hi

    I have a Access db(accdb) in share folder. when im runign my app from my desktop it should copy the tables from share folder to local path. if next time when m runnign the app it should do the...
  4. want to update a databse froma nother database

    Hi i want to update a database(execute.accdb) from another database(1) based on the output from the 1st databse. currently im updating a table fromt he same database. now i moved the table to another...
  5. Re: Copying Access databse table in to excel worksheet

    problem solved !! thanks dude
  6. Re: Copying Access databse table in to excel worksheet

    Thanks Kevin!

    Now im getting error "Cannot update . Database or object read only"
  7. Copying Access databse table in to excel worksheet

    Hi i want to copy teh table(including column names) in to excel sheet. below code is throwing error "failure creating file"





    Try
    Dim connString As String =...
  8. Thread: update table

    by ramesh017
    Replies
    7
    Views
    684

    VS 2005 Re: update table

    Dim connString As String = "PROVIDER=Microsoft.ACE.OLEDB.12.0;Data Source =" & Application.StartupPath & "\" & database_name & ".accdb"

    Dim con As New OleDb.OleDbConnection(connString)
    ...
  9. Thread: update table

    by ramesh017
    Replies
    7
    Views
    684

    VS 2005 Re: update table

    im using the below code to update teh table with the value "FAIL"

    it working fine... but its not updating the remaining fields as "PASS"

    help me ..
  10. Export access table in to excel file vb.net

    Hi i would like to export an access table(including column names to an excel file. Any help would be appriciated.

    nelow code shows some error:-(

    Try

    'Dim AccessConn As New...
  11. Thread: update table

    by ramesh017
    Replies
    7
    Views
    684

    VS 2005 Re: update table

    table1 wil vbe ther already... if i click gen_report then the table2 should be updated from table name...
  12. Thread: update table

    by ramesh017
    Replies
    7
    Views
    684

    VS 2005 update table

    i have two tables:

    table1

    case_no flow result
    tc_1 001 pass
    tc_1 002 pass
    tc_1 003 pass
    tc_2 001 pass
    tc_2 002 ...
  13. Replies
    4
    Views
    638

    VS 2005 Re: looping problem

    Yes.. the problem is i didnt cleanup teh temporary dataset(ds).. So everytime the row count is increasing!!! thanks a lot!!
  14. Replies
    4
    Views
    638

    VS 2005 Re: looping problem

    added ..but still faceing the probelm:-(
  15. Replies
    4
    Views
    638

    VS 2005 [RESOLVED] looping problem

    Here is my scenario,

    I have two tables. Table1(temp) contains three columns

    Id flowid action

    1 001 teststep
    2 001 If
    3 001 teststep
  16. Replies
    1
    Views
    632

    VS 2005 text box validation

    Hi,

    I want my text box to filled by an alphabet first then the remaing characters can be anything.

    Also i have drop down which is having arithmatic functions.(< ,> , = ,+ etc)

    If the user...
  17. Thread: forms

    by ramesh017
    Replies
    6
    Views
    774

    VS 2005 Re: forms

    Im loading parent form only after login form ..
  18. Thread: forms

    by ramesh017
    Replies
    6
    Views
    774

    VS 2005 Re: forms

    Dim prof_name, prof_desc, env, sys, sub_sys, functionality, proj_path As String
    proj_path = FolderName
    Dim split As String() = FolderName.Split("\")
    Dim parentFolder As...
  19. Thread: forms

    by ramesh017
    Replies
    6
    Views
    774

    VS 2005 forms

    I have three forms:
    Login
    Mainwindow(Parent MDI)
    testwin(ChildMDI)

    Flow: User have login from LOGIN form then the mainwidow ll be loaded. from the main window the CHil MDi wil be accessed.
    ...
  20. Replies
    1
    Views
    454

    VS 2005 inserting records from dataset to table

    Im inserting records from a dataset to access table by selecting a key(dix) from a listbox. below is the code


    Sub loop2(ByVal dix)

    ds.Clear()


    table_name1 =...
  21. VS 2005 move items from one list box to another and vice versa

    Hi i have two list boxes and first list box have some items and i want to drag and drop from listbo1 to listbox2 .. Below code is working fine...Now i want to drag and drop items which is moved from...
  22. Replies
    4
    Views
    536

    VS 2005 Re: Query is not submitting

    its working thanks cicatrix!!
  23. Replies
    4
    Views
    536

    VS 2005 Re: Query is not submitting

    HI

    thanks for your reply ... its fine when i insert single column..

    sql = "Insert into Temp1 (Funcname) values ('" & ds.Tables("sample_adapter2").Rows(inc)("Funcname").ToString & "')"

    but...
  24. Replies
    4
    Views
    536

    VS 2005 Query is not submitting

    My below code has to copy a table from access in to temp dataset and then i need to select some datas from the dataset... its workign fine up to copying in to dataset..but in the second part the...
  25. VS 2005 Drag and drop from one lsit box to another listbox

    Hi,

    Im a beginner in Visual studio. I want to select some user from list of user(listbox1) to another listbox(listbox2). The listbox1 contains the userids which is from a access table. If i move...
  26. Re: looking to connect ibm db2 database using VB.net

    Yes. Its opening the connection now:-) but throwing error "attaemp to connect a host failed due to a missins db2 product or invalid license".. any how thanks for your help!! ill take care of this...
  27. Re: looking to connect ibm db2 database using VB.net

    It is not connecting using the connection string
  28. looking to connect ibm db2 database using VB.net

    Hi i was trying to connect my IBM Db2 database using vb.net.
    I have installed DB2 client in my machine. when i execute the code below it is showing "invalid argument". I have no clues as im new to...
  29. Replies
    3
    Views
    968

    VS 2005 Re: Text file in to excel

    thanks for your reply.. but there are different delimieters are present.. have to remove everything..any piece of code available..
  30. VS 2005 capturing screenshot and copy it to powerpoint!

    Currently im having an application which wil capture screenshot and copy it to word document. Now i wanted to move this application to capturing and moving the screenshot in to powerpoint. below is...
  31. Replies
    3
    Views
    968

    VS 2005 Text file in to excel

    Hi i need to create an application(VB.net or VBA) which wil convert text file contents in to excel. u the contents fromt he text file have delimiters(special characters).

    The condition is while...
  32. VS 2005 how to get the filename using fileopendialog

    Hi i want to retrieve only the selected file name not the entire path..

    E.g:
    C:\Documents and Settings\175943\Desktop\1.txt

    i want to display only 1.txt not the path..
  33. Replies
    8
    Views
    1,088

    VS 2005 Re: .bat file not found

    Yes .. I did.. but still i cud not able to to ftp..

    Refer the code below of create_file1:

    Sub Create_File1(ByVal MF_UID_Parm, ByVal MF_PWD_Parm, ByVal strfilename_Parm, ByVal MF_FILE1_parm)

    ...
  34. Replies
    0
    Views
    469

    VS 2005 need help on ftp thru vb.net

    Hi im working on an application which will upload a file from PC to mainframe.. Below code will copy the FTP commands to the start.bat and will fetch the report to log.txt.. but while running it is...
  35. Replies
    8
    Views
    1,088

    VS 2005 Re: .bat file not found

    Imports System
    Imports System.IO
    Imports office = Microsoft.Office.Interop

    Public Class Main_Form
    Public Win_FileName, UID, PWD, MF_Filename As String
    Public Frm2 As Download_Dialog
    ...
  36. Replies
    8
    Views
    1,088

    VS 2005 Re: .bat file not found

    Thanks for your response.. now the error message changed to

    "The process cannot access the file because it is being used by another process ":-(
  37. Replies
    8
    Views
    1,088

    VS 2005 .bat file not found

    i am using an application which will call .bat file from a path..previously it was fine,.. but now it is showing "file not found".. didnt changed anything.. file exist in the same apth.. need some...
  38. Replies
    4
    Views
    2,968

    VS 2005 Re: MAINFRAME FTP using VB.NET

    Hi.. Thanks for your information.. actually.. the command PUT itself read out the browsed text file and will upload the text file in to mainframe... the thing is it will do it with the reference of...
  39. Replies
    4
    Views
    2,968

    VS 2005 Re: MAINFRAME FTP using VB.NET

    Hi

    The problem is there is nothing in that logfile... :-( but it should copy all the msgs from dos command...then only ythe code verifies the logfile and will do the process
  40. Replies
    4
    Views
    2,968

    VS 2005 MAINFRAME FTP using VB.NET

    Hi

    Im workign on a existed tool for downloading mf files to PC. Now i want to transfer a txt file in to mainframe using vb.net appliacation... Here i have a code for that..the problem is its is...
Results 1 to 40 of 94
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width