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 gkittelson 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: *

  1. Belcebu

    How to properly convert a datatable into an XML file

    Qik3Coder thanks for the help. I was hoping that instead of having to create the xml file node by node that there was a way to leverage the writexml method by somehow relating the perent_guids to the guids. If that is not possible then I will have to make a recursive method like yours (which...
  2. Belcebu

    How to properly convert a datatable into an XML file

    Hello, I am trying to convert an existing datatable into an XML file. The datatable has many fields including the two most important ones: parent_guid current_guid I want to create the XML out of this datatable with the relationship of these two columns. A simple WriteXml method does not...
  3. Belcebu

    Problem storing strings into a Tree

    Thank You for the inputs. Sorry for not using the code tags. You are right I overlooked that fact that I am trying to set a string to something instead of actually copying the string. I now copy the string and I get the desired results, however, I cannot use char* WordType, I have to use char...
  4. Belcebu

    Problem storing strings into a Tree

    The code for InsertTree: TreeNodePtr InsertTree(TreeNodePtr root, TreeNodePtr newnode) { if (root==NULL) root=newnode; else if(LT(newnode->entry.word,root->entry.word)) root->left=InsertTree(root->left,newnode); else if(EQ(newnode->entry.word,root->entry.word))...
  5. Belcebu

    Problem storing strings into a Tree

    I am trying to read a text file that contains a paragraph and my goal is to put each of the words of the text file into a tree and keep count of how many times each word appears in the file. All of my libraries have been tested and there seems to be no problem and I read each one of the words...
  6. Belcebu

    Need help creating automated monday dates

    gol4 Sorry for not responding sooner but i was unable to work at the end of last week. I tried the code that you gave me and it works perfectly!!!. Thank you for the help, and hope this can also help other people with the same problem. Belcebu
  7. Belcebu

    Need help creating automated monday dates

    Good questions Ken. Sunday will correspond to the first day of the week and the due dates could fall on saturdays and sundays. So if a report is due on sunday the 14th i will need the automated date to be monday the 8th, the same will go for monday the 15th and saturday the 20th, they all...
  8. Belcebu

    Need help creating automated monday dates

    In my access database i have a date in which i have to turn in a report. Here i need to make another field which will tell me a week in advance of that date. Now this is fairly simple with the dateadd function but here is my dilemma: Lets say my report is due on thursday the 18th. A week in...
  9. Belcebu

    need Creating monthly reports and forms

    I am trying to create a database about employee monthly evaluations. I have my main table where i put the employee's name, ID# and Dept #. These values are permanent. In the other hand i also have values that differ each month such as dates due for the revisions, dates the evaluation is sent...

Part and Inventory Search

Back
Top