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
A

AR Reddy

@AR Reddy
About
Posts
53
Topics
34
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to get rearm count
    A AR Reddy

    Hi, I want to get rearm count of windows 7 OS. I want to do it in C#. Please help me out in getting rearm count of Windows 7 opearting system Thanks in advance,

    AR Reddy

    C# csharp help tutorial

  • LoadLibrary Help
    A AR Reddy

    Thanks sashoalm, Now I got to know how to pass the value to a dll. But how to get that value from dll method. Please let me know. I am very poor in VC++. Thanks in advance,

    AR Reddy

    C / C++ / MFC tutorial c++ help

  • LoadLibrary Help
    A AR Reddy

    Hi, I am very new to VC++ and I got to work in VC++. My requirement is to call dll from an exe and I need to pass some value to the dll. I need to use that value in the dll. I am using LoadLibrary method to invoke the dll. But how to pass a value and how to use that value in the dll. Please help me. for example: LoadLibrary("test.dll", "display this text"); On load of dll (::OnInitDialog()): i want to display the message "dispay this text". How could I do this. Please help me out in this. Thanks in Advance,

    AR Reddy

    C / C++ / MFC tutorial c++ help

  • XML DOM Support WINPE 1.6
    A AR Reddy

    HI All, I am working with WINPE1.6 to capture the Windows Server 2003 Image. But I am landing with the problem "fail to create XMLdoc, MSXML2::DOMDocument not found". I have registered msxml2, msxml3, msxml3r, msxml6 and msxml6r in pe mode. But still same error we are getting. Actullay we are booting the system im PE mode and trying to capture the image with winpe 1.6 (WINPE2.0 is not supporting for windows server 2003). But getting the above specified error. Any Idea why this error is coming and please provide me the solution. Thanks in Advance,

    AR Reddy

    Windows Forms help html sysadmin windows-admin xml

  • Accessing silverlight application throw outlook addin
    A AR Reddy

    Hi, I am working on an AddIn to the Microsoft Outlook Office. I have added an HTML Folder to Personal folders section in Outlook 2007. When I click on the folder, im redirecting to specified url. When I specify the internet application (both web and silverlight applications), its working fine. But If I specify an intranet silverlight application its not working. Its working for normal intranet web applications. Please let me know why it is not working for intranet silverlight applications only? here is the code.. Outlook.MAPIFolder newView = null; newView = (Outlook.MAPIFolder)inBox.Folders.Add("TUIPoC", Outlook.OlDefaultFolders.olFolderInbox); newView.WebViewURL = "http://...."; newView.WebViewOn = true; TUIPoC is the folder name that i have created. Please help me. Thanks in Advance,

    AR Reddy

    WPF html help question

  • Office Outlook AddIn problem
    A AR Reddy

    Hi, I am working on an AddIn to the Microsoft Outlook Office. I have added an HTML Folder to Personal folders section in Outlook 2007. When I click on the folder, im redirecting to specified url. When I specify the internet application (both web and silverlight applications), its working fine. But If I specify an intranet silverlight application its not working. Its working for normal intranet web applications. Please let me know why it is not working for intranet silverlight applications only? here is the code.. Outlook.MAPIFolder newView = null; newView = (Outlook.MAPIFolder)inBox.Folders.Add("TUIPoC", Outlook.OlDefaultFolders.olFolderInbox); newView.WebViewURL = "http://...."; newView.WebViewOn = true; TUIPoC is the folder name that i have created. Please help me. Thanks in Advance,

    AR Reddy

    ASP.NET help html question

  • How can find a listitem item containing some particular text in VB.NET
    A AR Reddy

    Hi I want to get an item from listitem containing some particular text. Using "FindItemWithText" we can do but, this will get all the items that contains the particular text. But I want exact search. For ex: The following are the items in listitem: 201, 100, 2, 150 When I search for item "2", I am getting 201 with "FindItemWithText" as 201 contains 2. How can I get the Item "2"? Thanks in advance,

    AR Reddy

    Visual Basic question csharp

  • Out of Memory Exception
    A AR Reddy

    Hi, I am getting out of memory exception when I run my project Build. While resizing the forms and minimize/maximize the forms I am getting the Out of memory exception and sometimes application terminationg also. As per my observation this error is coming when I am working with many open applications and long time continuously. Will it be a code problem or any application or build settings we need to set? Please let us know. This is very urgent for us very impartent. Thanks in Advance,

    AR Reddy

    Visual Basic help performance question

  • Converting JPEG Images into XML
    A AR Reddy

    Hi, I want to convert JPEG Images into XML elements. Could you please let me know how canI do it? Thanks in Advance,

    AR Reddy

    C# xml question

  • How to change the default property of the form
    A AR Reddy

    Hi, I want to chnage the default property of the form in VB.NET. Means, when we create a form with out any controls and run, there is an icon will display at top right corner. When we click on that icon, we will get the menu items as follows Restore Move Size Minimize Maximize X Close Alt+F4 Now I want to change these menu Items. How can I do this? For example I want to change the menu Item "Close Alt+F4" to "Close Ctrl+F4" I want to add new menu Item "Next Ctrl+F6" How can we do this? Please let me know. Thanks in Advance.

    AR Reddy

    Visual Basic tutorial question csharp

  • How to find creation date of an exe
    A AR Reddy

    I want to find the creation date of an exe. I am using the following code. Public Declare Function CreateFile Lib "kernel32.dll" Alias "CreateFileA" (ByVal lpFileName As String, ByVal dwDesiredAccess As Integer, ByVal dwShareMode As Integer, ByVal lpSecurityAttributes As Integer, ByVal dwCreationDisposition As Integer, ByVal dwFlagsAndAttributes As Integer, ByVal hTemplateFile As Integer) As Integer Dim fHandle As Integer fHandle = CreateFile(FileName, GENERIC_READ, 0, 0, OPEN_EXISTING, 0, 0) Using this handle, with some more code we can find the creation date. This is working fine in VB. But not working in VB.net. CreateFile is returning -1 in VB.net. Could anyone of you please tell me why it is not working in VB.net and is there any other way(methods) to find the creation date of an vb.exe file. Thanks in advance,

    AR Reddy

    Visual Basic csharp tutorial

  • Assiging AxImageList to AxListView
    A AR Reddy

    Hi nlarson, Many thanks for the replies, Here is my actual code, Private WithEvents mLV As AxMSComctlLib.AxListView Public Sub Constructor(ByRef LV As AxMSComctlLib.AxListView, Optional ByRef LVWrapper As cListViewWrapper = Nothing) mLV = LV ...... mLV.ColumnHeaderIcons = frmMain.DefInstance.imlLVSortIcons ...... ...... End Sub 1) i can put back the New for mLV 2) Yes, im not using imlVVSortIcons in this form, i want to use mLV 3) frmMain is the main form which contains the imlLVSortIcons image list. And the above code is in different form. 4) Yes, I have created the definstance in frmMain. Thanks,

    AR Reddy

    Visual Basic csharp help tutorial

  • Assiging AxImageList to AxListView
    A AR Reddy

    Hi, Thanks for the reply, I have tried with New, but I am getting the same error "Invalid Object".

    AR Reddy

    Visual Basic csharp help tutorial

  • Assiging AxImageList to AxListView
    A AR Reddy

    Hi, When I tried to assign AxImageList to AxListView, I am getting "Invalid Object" error. Could any one of you please let me know how to do this. My code: Private WithEvents mLV As AxMSComctlLib.AxListView Public WithEvents imlLVSortIcons As AxMSComctlLib.AxImageList mLV.ColumnHeaderIcons = frmMain.DefInstance.imlLVSortIcons Actually this code is converted from VB6 to VB.NET. Thanks in Advance,

    AR Reddy

    Visual Basic csharp help tutorial

  • How to find menu item visibility dynamically
    A AR Reddy

    Hi Smithers-Jones, With the given code is working fine but, its looping through all the menuitems that are in the form. But I want to checkfor few menus (that will come from recordset) only. so from your given code, if I check mi.Name, Im not getting menu name. like as follows, Dim str as String = recset("cname") for each mi as menuitem in frmmain.definstance.controls if mi.Name == str if mi.visible = true then 'your code end if next So i am not able to check visibility property for few menu items. How can I do this. Please let me know the solution if you get a chance to look into this. Thanks in Advance,

    AR Reddy

    Visual Basic question help tutorial

  • How to assign image to a unknown control
    A AR Reddy

    Thanks! :)

    AR Reddy

    Visual Basic help tutorial

  • How to assign image to a unknown control
    A AR Reddy

    Hi Thomas, Thanks for the reply. yadada yadda ???? :) what should we do if the element is not a picturebox type? Thanks in advance,

    AR Reddy

    Visual Basic help tutorial

  • How to find menu item visibility dynamically
    A AR Reddy

    Hi Jones, Thanks a lot. Its working with little bit modifications. Thanks again.

    AR Reddy

    Visual Basic question help tutorial

  • How to assign image to a unknown control
    A AR Reddy

    Hi all, I am trying to assign image to unknown control as follows. abcd(ByRef element As System.Windows.Forms.Control) { CType(element, PictureBox).Image = frmMain.DefInstance.imlMain("Image1") } But, its giving casting error. Please let me know the solution. Thanks in Advance.

    AR Reddy

    Visual Basic help tutorial

  • How to find menu item visibility dynamically
    A AR Reddy

    Hi All, I want to check the menuitem visibilty. Menu items will be coming through recordset and will loop through the recordset. For each menuitem, I want to check the visibility like as follows. frmMain.DefInstance.Controls(rstRef.Fields("cname")).Visible but, abouve code is giving cast error. if we hardcode the menu Item, its working fine. like as follows frmMain.DefInstance.MenuItem1.Visible But, if I want to check the menu item visibilty dynamically, how can I do? Please let me know. Thanks in Advance.

    AR Reddy

    Visual Basic question help tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups