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 wOOdy-Soft 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: SiJP
  • Content: Threads
  • Order by date
  1. SiJP

    API Drawing (Rectangles) Within Container

    I've created a couple of basic functions that will draw rectangles around an object to give the appearance of gradient borders. It works quite well, but there is a bug. Whilst a textbox on the form will highlight correctly, a textbox within a frame will not. Any help would be great! (full...
  2. SiJP

    Listing COM components when adding reference

    I have an issue with vs.net whereby anytime I click on the "COM" tab when adding a reference, it takes between 5 to 6 minutes for the list to load. In the mean time, vs.net freezes and task manager reports it as Not Responding. I dont think I have an excessively long list of COM objects, may a...
  3. SiJP

    Simple XML Transformation?

    vb.net 2003, .net 1.1 My application is intended to receive xml data from a variety of sources. Each xml data packet is loaded into an XmlDocument. I now need to convert the xml in this XmlDocument object and load the result into a new XmlDocument. (XmlDoc -> XSLT -> NewXmlDoc) - The XSLT...
  4. SiJP

    Simple DateTime conversion (XML to SQL)

    I need to convert a string datetime "2006-03-16T17:12:36.328" (which is sourced from an XML document), into a string that is acceptable to be used in a SQL insert statement. (i.e '16 Mar 2006 17:12:36') Thanks ------------------------ Hit any User to continue
  5. SiJP

    Control or Web Application?

    I'm creating an internal application that is intended to query a SQL server and show a user results. It should also allow the user to filter and dort these results. I've chucked together a basic asp.net app that has a dataset and datagrid bound to this, but to create a load of custom filters...
  6. SiJP

    MCI // Wav Files

    I use VB to create WAV files of user's voices: lngResult = mciSendString(sendString, returnString, lLength, lCallback) This works fine in my development environment, but the problem comes when trying to play these files. When I try and play the file back in WMP 10, I get told I that the...
  7. SiJP

    Treeview with Outlook Folders

    RE: thread705-1082305 - I never did post my code that explains how I achieved loading outlook folder's recursively into a treeview. (Thanks to TheAccessHack for reminding me to do so!). Private Sub LoadTreeviewFolders() On Error GoTo LoadTreeviewFolders_Err Dim vRet As...
  8. SiJP

    ADO Recordset Form Binding

    Database: MS Access 2003 I am trying to bind a form to an ado recordset, but having a little problem with the updating side of things. The fields populate ok, however when trying to update any of the data, I get the "This recordset is not updatable" message. Here is my code: Dim cn As...
  9. SiJP

    XML from XSD Schema's

    As an analyst, I am always keen for other's point of view in how they go about doing things. It's my way of learning. So here's a situation, which i would appreciate your thoughts on: You, as an XML developer, are given an XSD by a third party organisation. You've got to Import and Export...
  10. SiJP

    xmlSchemaCache40 on schemas using 'includes'

    I am trying to validate some xml, using xsd documents that have a chamleon include design. xsd 'A' has no namespace xsd 'B' defines a namespace, and uses the include statement to refer to xsd 'A'. If I try and add these schemas to the MSXML2 schema cache, I end up with an 'Undeclared XSD...
  11. SiJP

    Suppressing Context Menu's

    I have an interesting situation which I need some views on. One of my forms has a context menu (right click sub menu, if you must) that i've defined in the forms properties (Form.ShortcutMenuBar). We'll call this 'Shortcut_1'. Whenever a right-click is detected on the form, the context menu...
  12. SiJP

    Cisco 806 // Connect to SQL Server

    I have a requirement to connect to a remote SQL server from my PC, however, I believe that our Cisco 806 router needs to be configured in order to do so. Basically, the remote SQL server is set up ok, and I can connect to it from an IP that doesn't sit behind this router (e.g. one in the DMZ)...
  13. SiJP

    DLL Distribution

    I'm a little unsure of what is trying to be achieved here (.net n00b), so researching my scenario is a little confusing - I will try to explain as best as possible. I have written a vb.net class, and built it as a DLL for COM Interop. I have done this by using VS.net 2002. I can build this...
  14. SiJP

    Help deciding on Solution

    I have an application distributed to 'n' number of clients. What the applicaiton does is slightly irrelevant, but the basics are that each time a user performs a specific operation, my company needs to be notified, so they can be billed. I was thinking along the following lines: - User has...
  15. SiJP

    Discovering Registry SubKey information

    I'm trying to find out what subkey's exist for "HKEY_CURRENT_USER\Software\Microsoft\Outlook Express" The result (singular) that should be returned is "5.0" but I'm getting blanks (literally, Chr(0)'s). I'm using the following code: Private Function GetKeyName(hInKey As Long, ByVal subkey As...
  16. SiJP

    XLST: rs data dictates Node name

    I need some help on a specific part of an XSLT I have produced. I have a DAO recordset with the following fields ("and data") Field_1 ("Shop") Field_2 ("London") Field_3 ("Angels") The resulting XML must look like: <?xml version="1.0"?> <root> <Shop> <LocationTown>London</LocationTown>...
  17. SiJP

    B*tch of a MSXML!

    I have the following xml in a DOM object: <root> <data> <foo>blarg</foo> </data> </root> I also have this xml in another DOM object. <somethingelse> <foo>blarg</foo> </somethingelse> The challenge is to: 1) Create a new node after the <data> node called <moredata> 2)...
  18. SiJP

    Remove those empty elements!

    In theory, I have this XML file (and be gentle, I'm not experienced with XML). <root> <data> <date> <start/> <end></end> </date> <time>12:00</time> </data> </root> As you can see, there are a fair few redundant elements. What I'd like to do is clean...
  19. SiJP

    Treeview with Outlook Folders

    Here's an interesting scenario. I would like to create a treeview that shows the outlook folders (Inbox and Sent Items) and their sub folders, obviously in the order they appear in outlook: [Inbox] |----[Work] |------|------ [In Progress] |------|------ [Finished] |----[Personal]...
  20. SiJP

    xp_cmdshell issue

    I have created a small batch file that does the following, as a test for xp_cmdshell: echo %1 dir %1 C: cd %1 dir The batch file has been saved to c:\test.bat. I then try to run the batch file using query analyser to run this command: exec master.dbo.xp_cmdshell 'c:\test.bat'...

Part and Inventory Search

Back
Top