Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: PankajAgr
  • Order by date
  1. PankajAgr

    Releaseing the Properties page values in Active-X Control

    Hi Guys, I designed the one Active-X control. In this control I added the one tree view, Ms-FlecGrid and 4 Command buttons. I defined the two properties page for this control also. when user put the Active-X control in form, through properties page user can define how many command buttons he...
  2. PankajAgr

    How to create 'DWORD Value' in registry?

    Hi MarciaAkins, Thanks for this valuable suggestion. This code solved my problem. * for you. Pankaj Senior Software Engineer, Infotech Enterprises Limited Hyderabad, Andhra Pradesh, India. URL : www.infotechsw.com
  3. PankajAgr

    How to create 'DWORD Value' in registry?

    Hi Guys, I want to create 'DWORD' type of value in registry. I am using the following command to create the value in registry- DECLARE Integer RegCreateKey IN Win32API ; Integer nHKey, String @cSubKey, Integer @nResult DECLARE Integer RegSetValueEx IN Win32API ; Integer hKey, String...
  4. PankajAgr

    How to define the icons in menu bar?

    Hi Guys, I want to attach the icons in menu bar. There is no way to attach the icons with menu in Menu Editor. Is there any alternative solution is available to define the icons? Please suggest me some solutions... Thanks Pankaj
  5. PankajAgr

    How to validate the XML against DTD?

    Hi Guys, I want to know how to validate XML against DTD. I am using VB 6.0 and MsXML 3.0 application. I got the one 'validate' method in XML dom but it is only checking the well-formedness of the XML not against the DTD. Please suggest me some solution. Thanks Pankaj Senior Software...
  6. PankajAgr

    DoubleClick in a treeview

    Hi Vikas, Before double click on node, identify user is double click on node or in the blank area. This is sample VB code to give a message when you DblClick on the node. It won't display any message when you click on the blank area- 1. Insert one TreeView and one command button in VB form. 2...
  7. PankajAgr

    How can I disable the Ctrl+Alt+Del combination?

    Hi bmdb, Sorry I couldn't reply u on time. Thanks, u gave me a link of so many good web sides & I found the alternative solutions for my problem in these website. My understanding is we cannot block the C-A-D but we can disable the task Manager & other corresponding buttons. Actually my...
  8. PankajAgr

    How can I disable the Ctrl+Alt+Del combination?

    Hi Guys, I want to know how to disable the Ctrl+Alt+Key combination in Win-2000 & Win-NT OS. Thanks in Advance Pankaj
  9. PankajAgr

    My Application's Security, Help please

    Hi strongm, I search the forum but I didn't find answer of my query. If know the exact location where I can find the answer please refer it. Thanks Pankaj
  10. PankajAgr

    My Application's Security, Help please

    Hi Percent, I want to know after formatting the disk its serial number will be changed or it will be fixed always. Thanks Pankaj Senior Software Engineer, Infotech Enterprises Limited Hyderabad, Andhra Pradesh, India. URL : www.infotechsw.com
  11. PankajAgr

    How can I know how many application are running in system?

    Hi Dimandja, Application means user runs any software like Ms-Word, Ms-Excel, Visual Basic etc. I want to know how to identify how many application is running by the user in system. Thanks Pankaj Senior Software Engineer, Infotech Enterprises Limited Hyderabad, Andhra Pradesh, India. URL...
  12. PankajAgr

    How can I know how many application are running in system?

    Hi Guys, I want to know how to identify how many application are running in system & list of all the application also. I used the "Process32First" & "Process32Next" API function but it is giving list of all the process running in system but I want to know only list of applications running in...
  13. PankajAgr

    How to execute the condition stored in variable?

    Hi Strongm, I got your point & solve my problem also. Through VB script I can execute the statements. Thanks for this valuable suggestion. * for you. Regds, Pankaj
  14. PankajAgr

    How to execute the condition stored in variable?

    Hi RaVeNCoder, You misunderstood my this point - "Important point is that condition string can be anything so it is not possible to create a function." Your code assuming it always check the enable or disable of the control but in my case condition can be anything like- 1. strVar=...
  15. PankajAgr

    How to execute the condition stored in variable?

    Hi Guys, Is there any way to execute the condition stored in variable. Like- Variable 'strVar1' stored the following condition- strVar1 = "iif(Text1.enabled = 'true','Ok','Invalid')" I want to execute the this condition & resultant value should be display in anywhere. I want the command to...
  16. PankajAgr

    Showing screen in red color

    Hi Guys, I have a P-IV PC with VIA motherboard & LG monitor. One day when I strat my computer, everything is coming in red color means reddish color is coming in whole screen. I clean & tight the display cord but still same problem is coming. What can be a reason for this problem? Please...
  17. PankajAgr

    Can Node Value & Child node define together?

    Thanks jel for this valuable responce, I understand your point if we define the node value & child node together then DOM object treat node value as a child node. I updated my code, now It is working fine. Senior Software Engineer, Infotech Enterprises Limited Hyderabad, Andhra Pradesh...
  18. PankajAgr

    Can Node Value & Child node define together?

    Hi Jel, Thanks, to give me this information. But, I want to know how to acess the node value through DOM object. I am using the VB6 with Micosoft XML-3.0 for DOM. When I creat the DOM object and accessing the value, it is giving following output - XML- <PNode> Top Node <CNode>Child Node...
  19. PankajAgr

    Can Node Value & Child node define together?

    Hi Guys, I design one XML in following format- <PNode> Top Node <CNode>Child Node </CNode> </PNode> I want to know can we define the node value & child node together within one node? I checked this XML in XMLspy it is returning a well formed XML. If yes then how to read the value of the...
  20. PankajAgr

    TreeView Width in tvwList mode

    Hi Carlos, Through this command u can change & identify the width of the each column- ListView1.ColumnHeaders(1).Width = 1600 Here 1 indicate the column index. Be remember column index always start from the 1. Hope it will solve your problem Thanks Pankaj Senior Software Engineer...

Part and Inventory Search

Back
Top