153 Topics

Member Avatar for
Member Avatar for lena1990

hi all i want to enter a turkish word to the database using netbeans but what apper in the database is something like that how i can solve it?????? thank you for help

Member Avatar for zeroliken
0
174
Member Avatar for roemerito

Hello Everyone So i have this flowlayoutpanel that contains checkboxes, so what It does is if a select a checkbox the text of that checkbox will be passed to the ProblemTextBox ![checkboxes](/attachments/large/3/checkboxes.png "checkboxes") My main problem is that I am able to add new checkboxes to the ProblemTextBox, but when …

Member Avatar for roemerito
0
2K
Member Avatar for Petranilla

Hi Everyone, Im' new in C. I was tasked to do a word game. Its a Guess a word game. The user inputs the letter through arrow keys. Then, my program supposed to check if each letter is correct. Then, display it in boxes. The problem is I cannot validate …

Member Avatar for Petranilla
0
243
Member Avatar for ar123

Hi there! I am new to daniweb.com and C++ CLI. I am trying to make a program that will tell the user the text for the ListItem number they type in. The ListItem information is stored in a text file with my custom file formatting, which is: <~ListItem 1> text.... …

Member Avatar for ar123
0
281
Member Avatar for somjit{}

this is a code from the book "the C programming language" by dennis ritchie, but for some reason its not working! #include <stdio.h> #define IN 1 /* inside a word */ #define OUT 0 /* outside a word */ /* count lines, words, and characters in input */ main() { …

Member Avatar for WaltP
0
198
Member Avatar for utsav91292

I want to make student management system in which student will enter his data and we can save it in any other program such as word, excel. And when he will open again he can get his data back..

Member Avatar for ChrisPadgham
0
78
Member Avatar for Divinedar

Not sure if this can be done. There are word files in a directory with all familiar names. i.e. fr001, fr002, fr003, etc... all with the extension .doc. I would like to know is there a code that will link an excel file to a directory and then be able …

Member Avatar for Divinedar
0
282
Member Avatar for flourishit

I want to creat a blog for my site, which is hosted on windows server. Can we host a wordpress site or blog on windows.

Member Avatar for baig772
0
156
Member Avatar for stephen_UK

Could somebody suggest the simplest way forward for me to investigate please? Please take a look at this web page which shows a single record of a mysql db http://www.swaag.org/DB_VIEW_Specific%20Record%20Number2.php?swaagrec=591 I would like to be able to create a program where I can select for example records 1 to 100 …

Member Avatar for stephen_UK
0
167
Member Avatar for eternalcomplex

Hi, I'm trying to generate Docx files using python. I searched the web and found a module: https://github.com/mikemaccana/python-docx/blob/master/README.markdown It says to install using easy_install or pip, which I have no idea how to do. I also have a mac so I think that makes it a little more complicated. I'm …

Member Avatar for G_S
0
348
Member Avatar for amitash

Hi, I have created a label template in Word and written a macro to print all records (see code below printAllRecords() and attachments) from an Excel datasource. The problem is when I press F2 (defined function key to print all records in my macro), it prints the 1st page once …

Member Avatar for AndreRet
0
839
Member Avatar for TrustyTony

As in C++ was some question about speed of simple hard disk based lookup, here is a version of unscramble program completely HD based lookup, which gives all possible candidate words for multiword anagram. Program is not sensitive for case of words but does not ignore special characters like ' …

Member Avatar for svfox2000
0
971
Member Avatar for djuran89

I need somting like this [Click Here](http://www.thewordfinder.com/scrabble.php) , but a want to type letters in separate <input> one <input> one letter. My script find just words with 4 letters if i type 'g','o','l','d' he find me just 'gold' but don't find 'old' and if have the same letters. I don't …

Member Avatar for svfox2000
0
237
Member Avatar for praveendasika

Hi all, I need some help in how to achieve this functionality....the problem is ... I have some data in my database.On clicking 'generate invoice' , It should gather the data from the sql server and publish it to a document which the user can send it to a company.Basically …

Member Avatar for bhagawatshinde
0
197
Member Avatar for existinglady

excuse me but can someone teach me how to get a string with space example : this author i need to get the codes on how to get that thank you

Member Avatar for Lucaci Andrew
0
408
Member Avatar for jcgldr

i'm working with vb to automate word documents so to create a new document i use dim oword as word.application dim odoc as word.documant odoc=oword.documents.add and to open a document i use odoc=oword.document.add(mypath+mytemplate) but i'm struggling now how to add a template to an existing document for example i want …

0
76
Member Avatar for cyon

I was told in an email to revise a document and submit the revised document "in clean and track change version." Not knowing what this meant, I asked for clarification and the sender explained that "track changes shows the change you made and a clean copy means you have accepted …

Member Avatar for cyon
0
295
Member Avatar for jcgldr

hi i'm working on a website that i allow the user to enter a name and then press a button that prompts the server to setup a pdf acording to the info the user entered and then send the pdf to the user i'm testing the website on my leptop …

0
83
Member Avatar for zassyghurl0325

hi! im currently doing my undergraduate thesis.. im a COmputer science student and looking for some ideas on checking word in a phrase or sentence and look for its meaning of each word in a database and display it.. can you help me by giving some idea or syntax(code) in …

0
86
Member Avatar for sburks92131

I would like to enter some text into a text box field in a Word Form and have the text printed next to it in barcode format. This is so I can have both human readable and barcodes available on the form. I have the barcode fonts that I need …

Member Avatar for deceptikon
0
104
Member Avatar for Esmerelda
Member Avatar for thines01
0
135
Member Avatar for boiishuvo

I am trying to make a python that can remove any occurences of any word in stopwords from the wordlist, but I don't know what is exactly wrong with this program. Any suggestions? [code]STOPWORDS = ['a','able','about','across','after','all','almost','also','am','among', 'an','and','any','are','as','at','be','because','been','but','by','can', 'cannot','could','dear','did','do','does','either','else','ever','every', 'for','from','get','got','had','has','have','he','her','hers','him','his', 'how','however','i','if','in','into','is','it','its','just','least','let', 'like','likely','may','me','might','most','must','my','neither','no','nor', 'not','of','off','often','on','only','or','other','our','own','rather','said', 'say','says','she','should','since','so','some','than','that','the','their', 'them','then','there','these','they','this','tis','to','too','twas','us', 'wants','was','we','were','what','when','where','which','while','who', 'whom','why','will','with','would','yet','you','your'] def remove_stop_words(wordlist, stopwords=STOPWORDS): wordlist …

Member Avatar for HiHe
0
807
Member Avatar for Stancer

I am currently running Windows 7 Home Premium SP1, AMD FX-6100 Six-Core Processor 3.3 GHz, 8.00 GB RAM, 64-bit OS. My problem occurs while running Excel and Word 2007. However, all systems with 2007 or 2010 office have the same issues in our office.(Some are XP, Windows 7 and one …

Member Avatar for RTFMID10T
0
218
Member Avatar for MohEzzat

I ask for help if any one know how to filter words from text file. if the file contain(book,books,booking,..)I want the filter to retrieve only book and booking also if it contain(get and got)choose only the verb "get". any help Thanks.

Member Avatar for stultuske
0
188
Member Avatar for FUTURECompEng

Code attached in the attachment is not my own and was supplied by an instructor. I am to create a word morphing game. The computer will provide a starting word and an ending word. I am to enter a new word, that either adds or removes a letter from the …

Member Avatar for JamesCherrill
0
918
Member Avatar for softDeveloper

Hi all! I'm copying a poem from MS word ans pasting into a html text area. However only the first line of the text has a tab between the beginning of the phrase and the margin. All the subsequent phrases lose formatting and stay right next to left margin. It …

Member Avatar for peter_budo
0
265
Member Avatar for pwolf

Write the function search(word, substring) that takes in a word and a substring as arguments and returns the position (0 indexed) of the substring if it is found in the word. The function returns -1 if the substring is not found. is there a method to do this? i tried; …

Member Avatar for TrustyTony
0
180
Member Avatar for a1a4a

Hello ! I just downloaded a Dictionary Words list .txt( containing all dictionary words ), every word is on a line. What i need is only words > 5 letters ( length > 5 ). S o i though about making a Visual basic software that delete words < 5 …

Member Avatar for Reverend Jim
0
231
Member Avatar for ashutoshhshukla

Hi all, I wanna open a MS word file placed on FTP , and then edit it (I wanna add text and table on the top of a file) such that it maintains it's entire content and formatting, and then save it to the other location on FTP. I have …

Member Avatar for veedeoo
0
187
Member Avatar for TrustyTony

This is my code for anagrams not utilizing the ready prepared file of anagram synonyms to celebrate 11.11.11 11:11:11. If you start program it warns you about missing subdirectory dict and creates it. You may put any word files, one word per line, to file <dictionary name>.txt. Program lists available …

0
2K

The End.