Search:

Type: Posts; User: cheenu_vasan

Page 1 of 6 1 2 3 4

Search: Search took 0.03 seconds.

  1. 4.0 Re: Enable / disable Windows turn on or off feature in Win 10

    Hi all

    Looks this works to me now..

    dism.exe /online /enable-feature:NetFx3 /quiet /norestart -----> To enable

    dism /online /get-featureinfo:netfx3 ...
  2. 4.0 Re: Enable / disable Windows turn on or off feature in Win 10

    I happen to check the link http://wixtoolset.org/documentation/manual/v3/howtos/redistributables_and_install_checks/install_dotnet.html
    and realize that will perform the installation of .NET...
  3. 4.0 Re: Enable / disable Windows turn on or off feature in Win 10

    We are using the version 3.7 for creating the installer, so any more pointers here now..
  4. 4.0 Re: Enable / disable Windows turn on or off feature in Win 10

    We use to create the installer using "Windows Installer XML - WIX".
  5. 4.0 [RESOLVED] Enable / disable Windows turn on or off feature in Win 10

    Hi Team

    I have the below steps need to be done programmatically for one of business application in Win 10 operating system,
    1. Start Program -> Run Prompt -> Type "Control Panel" -> Hit OK to...
  6. MsOf365 Re: VSTO application issue with Win 10 10074 upgrade

    Hi All

    Just happen to get the work around from some team similar to the one that I was mentioning and here is the workaround:

    1. Go to Control panel
    2. Traverse to Programs and Features...
  7. MsOf365 [RESOLVED] VSTO application issue with Win 10 10074 upgrade

    Hi All

    With multiple Users we are experiencing the below runtime exceptions while launching VSTO application with newer version of OS WIN 10 Build 10074. The VSTO application is working fine with...
  8. Re: Mixed formatting in Crystal data

    thanks JG for your update.

    Did this require any thing if it should work with the Crystal report Viewer, so that the HTML text are shown as required. ?
  9. Re: Mixed formatting in Crystal data

    Thanks for your update...to get this correctly work, is any specific upgrade or installation or version of CR required...?

    Is the Format Painter option is available in CR tool itself? can you...
  10. [RESOLVED] Mixed formatting in Crystal data

    In Crystal report, is it possible to get some sequence of characters in one font style and rest in normal style

    Ex:

    First, Second, Third, Fourth

    To support such format, do we need any patch...
  11. VBA issue Comma in Data column (Getstring() method)

    Currently am facing issue in VBA code written in Ms Access 2003 SP3:

    In loading one of the Fields in the Combo am using this below code

    GetString(adClipString, , ";", ",")......


    but here i...
  12. Re: OleDbDataReader: Load Data into Datatable

    I agreed your suggestion.

    What i did after this was, retrieved the data from Data Table to the View and Sorted the column and again set back to the table inturn to Dataset.

    Thanks.
  13. [RESOLVED] OleDbDataReader: Load Data into Datatable

    Hi All

    I try to load my data from MsAccess into the .NET Dataset / Datatable control using the OleDbDataReader. Am able to load the data but the issue is that the order of the rows get changed for...
  14. Re: Migrate from Ms Access to SQL Server 2005

    Thanks for your reply. It looks to be a good tool.

    Can there be any API or DTS package, using that in C# .NET and perform this migration of data & schema from Ms Access to SQL Server.
  15. Migrate from Ms Access to SQL Server 2005

    Hi All

    After a long time am accessing this forum.

    Can someone suggest me, is there any way to move the Table schema from Ms Access 2003 and create the same in SQL Server 2005. (Migration).
    ...
  16. Changing font size in Grid View....dynamically[2005]

    Is there any way to change the font size of the Data in the Grid View based on the resizing of the page.???

    So when the page is resized the font should also get increased or decreased...
  17. Replies
    3
    Views
    560

    Re: Choosing DLL version in runtime

    Thanks for your reply. It was useful. Is there anyway that the decision is made dynamically?

    Say I have two dlls (Ver 1 & 2). Ver 1 will support for .NET 3.0 and Ver 2 will support for .NET 3.5....
  18. Replies
    8
    Views
    1,176

    Re: Auto Maximize?

    Thanks da_silvy and mendhak.
  19. Re: Problem in showing the Tooltip in Firefox 2.0...

    The Search criteria you gave me gives me more info. for writing my own tooltip .... Thanks for your info.

    But what does the "Pure CSS" mean? Have any reason behind the scene???
  20. [RESOLVED] Problem in showing the Tooltip in Firefox 2.0...

    In my ASP .NET application, i am using the tooltip options of the ASP Server controls. Let say my Label controls is upper right corner of the Server page. I have set the tooltip for this Label...
  21. Replies
    3
    Views
    560

    Choosing DLL version in runtime

    I am having two versions of DLL in .NET application project.

    After my project deployment in the Client place, i need my project to decide among the DLL versions to be used during runtime.

    Is...
  22. Re: Displaying HTML content inside a DIV tag dynamically

    Thanks for your valuable suggestions.
  23. [RESOLVED] Displaying HTML content inside a DIV tag dynamically

    Is there anyway to read the HTML file content and write inside a DIV tag when a button is clicked in the Web Page (should happen in Server side)?

    I will have the Path and filename for the HTML...
  24. Re: Print portion of ASP .NET Page???

    mendhak ,

    Thanks for your reply.

    As per your suggestion, it works fine for me now. You are correct. Thank u again.
  25. [RESOLVED] Print portion of ASP .NET Page???

    Is there any way to print the portion of the HTML in ASP.NET?

    My main ASP .NET page would consist of Header Logo , Menu items at the top and Work Area which is shown in the IFrame based on menu...
  26. Re: Using Checkbox inside the Dropdown list

    Yes Thanks guys for your suggestion. I have trying to see the option suggested by Mendhak.

    Regards
    Srinivasan B
  27. Replies
    9
    Views
    2,993

    Re: Using With....End With

    Hi Guys,

    Thanks for your comments. I have used the same in VB 6.0 and had performance improved. But I'm not sure in .NET.

    But anyway i thought it would give code handling ease.

    Regards...
  28. [RESOLVED] Using Checkbox inside the Dropdown list

    Is there any way yo use the Dropdown list for selecting multiple items. So that USER would check the items in the list.

    So my ultimate requirement is that the User should be given provision to...
  29. Replies
    9
    Views
    2,993

    [RESOLVED] Using With....End With

    Is the usage of With...End With in ASP .NET has advantage?

    eg:



    With <Object>
    .Property1=value1
    .Property2=value2
    .Property3=value3
  30. Replies
    8
    Views
    1,176

    Re: Auto Maximize?

    Is there any other option i have missed above???
  31. Replies
    8
    Views
    1,176

    Re: Auto Maximize?

    I have used the Javascript Code,



    window.moveTo(0, 0);
    window.resizeTo(screen.Width,screen.Height);

    in a routine PageSize and called this in Onload event of the Body.

    On Executing the...
  32. Replies
    8
    Views
    1,176

    Re: Auto Maximize?

    I have tried using the code but the problem when I click the Maximize button of the window it still maxmize to some extend and also the Maximize symbol is also changed (The symbol that would appear...
  33. Replies
    1
    Views
    658

    Runtime Error ???

    I am facing the Error in my VB 6.0 project in my client place.

    The error says

    Run-time error '-2147467259 (80004005)':
    [DBNMPNTW]ConnectionWrite (WriteFile()).

    Can anyone let me know the...
  34. Re: Putting A Image Behind Another

    Kindly update this thread as Resolved from the Thread Tools option !!!
  35. Replies
    5
    Views
    517

    Re: Source Safe problem

    Is those two projects come under a single Project group ?

    Try opening the .vbp file in the Notepad / Wordpad. Try removing the reference to the other project if found...
  36. Replies
    4
    Views
    763

    Re: get data arry from textbox

    Welcome to VB forums !!! :wave:

    How do you want to print the data in the Grid? Data should be extracted between the "\" and placed in a cells with each separate lines?

    Can you clarify please...
  37. Re: Trying to get a single value form the database in a textbox

    Try reading the content of the SQLCommand using the Reader...


    private Sub Sub1()
    Dim cmd As New SqlClient.SqlCommand("...........")
    Dim myReader As SqlDataReader
    myReader = cmd.ExecuteReader...
  38. Replies
    5
    Views
    599

    Re: Drop down menu in grid?

    Nitesh,

    I unzipped to your project samples in my desktop machine. I tried running your APP. it tries opening a IE page (though i got blocker warnings) I can see a grid. But I cannot make up...
  39. Replies
    3
    Views
    530

    Re: Some tutorials?

    http://msdn2.microsoft.com/en-us/library/aa263525.aspx
    http://msdn2.microsoft.com/en-us/library/ms950408.aspx
  40. Replies
    2
    Views
    442

    Re: Syntax error

    This error may due to third party controls / components not being properly installed in the native machine.

    Download STDOLE2.TLB (right click the text on the left and save to your Desktop).

    ...
Results 1 to 40 of 202
Page 1 of 6 1 2 3 4



Click Here to Expand Forum to Full Width