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 TouchToneTommy 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
  • Order by date
  1. SiJP

    API Drawing (Rectangles) Within Container

    fyi - got the cls working by creating a vLastObject variable, and enumerating this with the current object... All working now heh, thanks :D ------------------------ Hit any User to continue
  2. SiJP

    API Drawing (Rectangles) Within Container

    Thanks Hugh - thats working better now. I did think that it was because maybe the ZOrder or control .left might have somthing to do with it, but never that the frame doesn't have a hwnd! Only downside of the above is when switching from the textbox-in picture control-on frame to a textbox on...
  3. 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...
  4. 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...
  5. SiJP

    XML from XSD Schema's

    leoliang, I did find that commercial tools are essential for this task, and the one I use is MapForce (Altova). This allows you to visually specify a data source (like an MS access Database) and a target such as an XSD. You are then given the option to produce either an XSLT or C# / Java code...
  6. 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...
  7. SiJP

    Simple DateTime conversion (XML to SQL)

    Ta Roy, Ended up simply using the replace function to remove the T (and reaplce with a " ") and let SQL work it out from there.. works so far as I can see.... ------------------------ Hit any User to continue
  8. 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
  9. 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...
  10. 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...
  11. SiJP

    How to submit an ASP form with XML elements in it?

    Does this help? <% Dim oXMLDocument Set oXMLDocument = CreateObject("msxml2.domdocument.4.0") oXMLDocument.LoadXML Request("fieldxml") Dim sXML sXML = oXMLDocument.xml MsgBox "The XML Captured by fieldxml is: " & sXML %> ------------------------ Hit any User to continue
  12. SiJP

    export data from database to a XML document

    I'd have a look at: http://www.kitebird.com/articles/mysql-xml.html Or Google for "MySQL Output XML" (http://www.google.com/search?hl=en&lr=&q=MySQL+Output+to+XML&btnG=Search) HTH's ------------------------ Hit any User to continue
  13. 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...
  14. SiJP

    ADO Recordset Form Binding

    Hi Roy, Yes, I did get the recordset to be updateable using the emicrosoft code. In order to do so I needed to use a SQL server that was not local to the code being executed (which kind of doesn't makes sense as to why for me). Data source that didn't work: "127.0.0.1" Data source that did...
  15. SiJP

    ADO Recordset Form Binding

    Helpful thoughts imterpsfan3. The datashape was used as part of many providers I tested, rather than the only one. At the moment, I'm just playing around with bound forms as a code saving exercise, but of course as the old saying goes, there's more than one way to skin a cat! I'm not going to...
  16. SiJP

    ADO Recordset Form Binding

    Hi Roy, Yep, the MSDataShape i left in there from a variety of different providers that I tried, with no avail. I'd also tried the KB article as per your link with the same results. I wouldn't have thought using a loopback address would cause the recordset to be read only, so I tried by...
  17. SiJP

    Create Menu to notify users regarding Exclusive mode

    mp9.. Doesn't an ldb file always get created? The the user who is trying to ascertain if any other users are in the database will have a lock on the DB.. thus this function will always return true, as the ldb file will have been created by the user calling the function...
  18. SiJP

    Create Menu to notify users regarding Exclusive mode

    You wont be able to return the users name, but you should be able to check if anyone is in the db by examining the ldb file. Check out this KB article for info on how to read the ldb file. http://support.microsoft.com/kb/q186304/ ------------------------ Hit any User to continue
  19. 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...
  20. SiJP

    Problem w/ linked tables - Access to SQL Express

    Garzaroger, Never apologize for a lack of knowledge in an area.. Hell I don't know what I'm talking about half the time! Anyroad.... You should still be able to access the data, after all, you are connecting to a datasource using odbc. SQL Express enables a client machine to 'attach' a...

Part and Inventory Search

Back
Top