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: ixian
  • Order by date
  1. ixian

    Data grid questiosn

    Hey all, I have some questions about datagrids: 1-- How do you start a datagrid with no columns?(is 2 columns default??) 2-- How do you create more then 2 columns with a cmd button? 3-- How do you save any data inputted without Access/SQL server application? Aaron Fear is the mind...
  2. ixian

    Datagrid questions

    Hey all, Okay this is the questions? txtCN is indexed 0 thru 15 dg1 is the datagrid cmdCDG is the command button all is on one form 1)-a- How do you add more columns in a datagrid with caption in each collumn via the txtCN(index)? -b- For the txtCN(index) that dont have any text; not to...
  3. ixian

    New Data Grid question

    okay form 1 has 20 text boxes that will become data grid column captions. form 2 has one datagrid for each of the txtbx on frm1 that is filled -- I wish then for a column to have a caption. if a txt box is not filled then it is not appicalable. Aaron Fear is the mind killer!!!!!!
  4. ixian

    Convert XML to ADO Recordset?

    kloner: Here is an example for a &quot;not so large&quot; xml file to pass thru ADO via HTML/ASP for a pure data stream(no XSLT). <%@ language=vbscript %> <html> <head> <title></title> <% Dim i dim oRs dim sTable set oRs = Server.CreateObject(&quot;ADODB.Recordset&quot;) set...
  5. ixian

    Data grid question

    Let me state it like this I have a dbgrid(dbgDB) and a command button(cmdANC) and a text box(txtCN) For each time i click on the cmdbutton, i wish for a new column to be made with the name from the txtCN to appear. Aaron Fear is the mind killer!!!!!!
  6. ixian

    Data grid question

    Hey all, I have a datagrid(dbgDB).. I wish to add columns with captions for each column via command button(cmdANC). Aaron Fear is the mind killer!!!!!!
  7. ixian

    Tough Question... sub nodes, multiple match...

    russ, use xsd functions(that will seperate the current and archieved listing----plus what ever other type of data schemas that you wish to have broken down) that then tie into to your xsl. Aaron Fear is the mind killer!!!!!!
  8. ixian

    ASP vs ColdFusion

    Kinl, As WhiteTiger stated, ASP Do you wish for a massive headache til you &quot;master&quot; CF? pending on the total content static vs dynamic as well..... If you wish then use your content on a workstation and work the CF platform and run it internal with the next workstation on the...
  9. ixian

    Grouping of files in a project??????

    Hey all, How do you group files in a project setting( a la InterDev or FrontPage or VisualStudio). Aaron Fear is the mind killer!!!!!!
  10. ixian

    CommonDialog question

    rajeevnandanmishra thanks Aaron Fear is the mind killer!!!!!!
  11. ixian

    CommonDialog question

    Hey all, I wish to be albe to open all types of txt files like Word does All Word files Rich text files text Files etc what are the extension for each and how would you list them in the filter part of the coding? Aaron Fear is the mind killer!!!!!!
  12. ixian

    keycodes

    woyler, they are the coding numbers for like I , i , l, >, /, 4, 5, 6, 8 etc Aaron Fear is the mind killer!!!!!!
  13. ixian

    keycodes

    hey all, is there as website for all the keycodes? aaron Fear is the mind killer!!!!!!
  14. ixian

    if then else error.....

    woyler, thanks....sometimes i over use &quot;_&quot; ..... aaron Fear is the mind killer!!!!!!
  15. ixian

    if then else error.....

    Hey all, ok here is my code:(i get a compile error--- else without if) If eChar <> Chr$(10) And eChar <> Chr$(13) _ And eChar <> &quot; &quot; And eChar <> &quot;:&quot; Then _ tmp2$ = tmp2$ & eChar$ Else tmp2$ = &quot; &quot; End If Have I got something wrong...
  16. ixian

    Need clarification on what too use?

    Hey all, Okay. I have some coding(alot) but here is the small of it A private sub RTF1_keyup(KeyCode As Integer, Shift As Integer) and private sub lstSMART_keypress(KeyAscii As Integer) about 800 lines of code. if the user keyup/keypress 5 different keys then a smart lsitbox opens. Would it be...
  17. ixian

    CLOB Datatype and Visual Basic

    jingpong, If you can get to a bookstore... or online bookstore and see if any one has Wrox Press..... Visual Basic Oracle Programmer's Reference What does this book cover? Oracle database structure Oracle Objects for OLE(OO40) ActiveX Data Objects (ADO) SQL and PL/SQL Transactions and...
  18. ixian

    Query on Lcid properties? HELP!!!!!!

    tyant, These are the LCID hex numbers for each of the countries that you have listed: England(UK) = 0809 Itlay = 0410 Spain(Basque) = 042d Spain(Catalan) = 0403 Spain(Mod. Sort) = 0c0a Spain(Trad. Sort) = 040a France = 040c Hope this helps. Aaron Fear is the mind killer!!!!!!
  19. ixian

    maximum size of XML/Parsing of irregular XML file

    Use Sax for the parser, if the overall layout of each file is about the same(in context). Fear is the mind killer!!!!!!
  20. ixian

    Need help on smart list box and RTF

    Strogm, Here is the code for this problem Private Sub RTF1_KeyUp(KeyCode As Integer, Shift As Integer) If KeyCode <> 190 Then Picture4.Visible = False Picture6.Visible = False Exit Sub End If Dim FF As Integer Dim PT As POINTAPI Dim...

Part and Inventory Search

Back
Top