Algorythm For Creating A Crossword Puzzle
Jul 24, 2011I have created an algorythm for creating a crossword puzzle, but I am not pleased yet.
View 1 RepliesI have created an algorythm for creating a crossword puzzle, but I am not pleased yet.
View 1 RepliesHow are crossword puzzle grids made? I have written a program to generate a puzzle, my problem is the GUI part.I ended up using Visual Basic (VB) because I'm more familiar with that language.However, eventually I have to write this in Java. So far the only way I am displaying the results in a grid-like format is using two controls Groupbox with a Label inside it.This way I can put the number to the word's clue in the title line of the Groupbox, and the individual letter in the Label. To make the cell in the grid editable (my goal for a different version of the puzzle), I guess a Textbox would have to replace the Label.The GUI for real online (professional) crossword puzzle grids is much nicer than this.I know there is a way to combine controls to make a customized one. Even if this works in VB, I'm not certain if it can be done in Java, therefore, I really don't want to go that route (unless someone knows how make customized controls in Java). I have searched the net and looked in books on games, VB and Java with no luck.I need something that I can grow dynamically depending on the grid size needed to hold the content.
View 1 RepliesOr richtextbox? lets say i have 10 words. how do i place it in textbox or richbox? with different direction and location?
View 3 Repliescan you make the words appear in the puzzle? and then i will figure out how to highlight the correct words or something. [URL]
for example is to have the word forget in listbox2 which is the first word in the puzzle.
Option Strict On
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
[Code]......
I puzzle with (setting uptime-real time clock) calculation.ex. if I want my stopwatch countdown fromtart: 18.20.30 - stop: 18.50.50 = difference time is 00.30.20 that is easy butstart: 18.20.30- stop: 18.50.40 = difference time is 00.30.40
View 10 RepliesLet's say I have an object that contains a Word property and a Sentence property. The sentence must use the word, and I want to replace the word in that sentence with a link using a public function (say, GetLinkedSentence). The catch is maybe the sentence uses a plural form of the word and maybe the "word" itself is actually a phrase, or is even hyphenated. There's no length limit to the word either. How do I find and replace this word (in ASP.NET, preferably VB) with a link [word])?
View 2 RepliesI have to design, write and test a vb program to help the user slove the numbrix puzzle
so far I had this
[code]
I am creating a puzzle game and would like to calculate the width and height of the puzzle taking into account the original image size and the screen resolution. My screen height is 768 and width is 1366. An example image is 1200 x 1600 and the jigsaw size that works well with this image is 480 (height) x 640 (width). I would like to create an algorithm that calculates the jigsaw size for any image bearing in mind that the screen resolution will change as will the size of the image.
View 2 Repliesthe rules are that same coloured blocks of two or more can be removed by clicking on them. blocks then slide down from above. if a column is empty columns other columns move in from the sides.when someone clicks on the green blocks in the bottom row the columns should slide in from the sides. columns to the left of the black line slide right and on the right of the black line slide left. so in this case only the two rightmost columns should slide from the right to the black line after removing the green blocks.The problem i am having is in designing a suitable algorihm to do the collapsing after the removal. my current approach is to test each column from left to right to see if it is empty. if it is empty then i slide whatever column is to the left (if left of the black line) or to the right (if to the right of the black line) over the blank column and repeat this in the direct i am sliding from
View 1 Repliesplease tell me what is below code doing? is it creating array with two values or its creating to string index which will take value later? [code]
View 4 RepliesThis is my first time so please be gentle. I hope this is in the correct place.Basically I want create a reg key that will effectively add a site to the trusted zone of IE.I have got so far and can create the key but I want it to create a REG_DWORD and not a REG_SZ. My code is:
[Code]...
I only have a very basic knowledge of VB but am trying. Basically I want to run a script that will add this website to the trusted site of users. We will have hundreds who need this and want to create a script to speed it along. I will be adding other things to the script as time goes on but this is the first step.
I'm looking to create an API for a website I have built. The API will be built in ASP.Net - probably using VB and will need to be consumed by multiple platforms including PHP. I've read a bit about REST vs. SOAP APIs and am confused about which route I should go. I also need some examples and frameworks I can use to get started.
View 5 RepliesI am trying to learn how to create a DLL in C (using Visual C++ 2010) for use in Visual Basic (2008 Express). I am a novice programmer, so please bear with me. My objective is to learn how to do starting with a very simple function, and I foundC++.html This examples presented in that tutorial are for Visual C++ 6 and VB6. I know there are differences between VB6 and VB2008, so maybe this is why I am running into problems following this example. In Visual C++, I created the DLL as a Win32 project. The function is simply summing two integers. I put the function "sum" in the source file "dllmain.cpp."
View 4 RepliesIs there any C# .NET ORM that can create databases? It should be capable of creating MS + MySQL + PostGre + Oracle databases at least.And I don't mean tables or schemas, I mean the database only.I use nHibernate, but it can only create tables and schemas, and query/insert but not creating the database itself.
View 4 RepliesI am wanting to build my own version of MSN complete with server etc, I was wondering if anyone had any basic tutorials etc? I dont plan on making it open to the public and it will be purely for learning, just looking for something to do now that I have made my own version of paint, advanced web browser, media players etc... just looking for my next learning curve.
View 4 RepliesI'm building a simple udp lan chat application in vb.net and I'm wondering how I should split my packets. Each sent packet should have like an id, a username and ip address from where it's coming and maybe also a command part for like join or leave to update my userlist and a text message. I'd like to know what is the easiest way to put all this in a simple packet then easily split and access different parts from it when it's received. thanks.I'm using UDP since this is only in lan so i'm broadcasting to *.*.*.255
What I want to know is what would be the most easy and powerful way to format my packets so they include a username , an id, a command and a text message, then the user receiving it decrypt it to show only the message written by which user or if it's a command like join or leave to show the appropriate message of joining and add the user to the list for exemple.
I have a vb.net web app, and I need to give my users the facility to download a ms-word .doc file. This file needs to be created dynamically, and should contain some bold text and a table.
I've come across this code, which builds a .doc file, and lets you download it:
Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim strFileName As String = "GenerateDocument" + ".doc"
[Code]....
...but I don't know how to make the text bold, or create a table. I'm sure there's a better way.
What im looking to to is in my web application build a progress bar similar to that in the window.form controls.
View 1 RepliesI would like to create a quiz and wonder what is the best way.
1. Using a textfile to read in the questions/answer
2. Using radio buttons
3. Or something else you suggest?
I'd like some advice on building in known errors. Let's say I have a Windows form that needs to set the source path of an image in an object. It must be:
A valid path
An image
A PNG
[code].....
i am trying to run the following code :
Excel.Application xlApp;
Excel.Workbook xlWorkBook;
Excel.Worksheet xlWorkSheet;
[code].....
notepad file means that is used for .java file and .txt files.so this files should be converted into .exe file using the vb.net environment.so, if its required software is not installed in any pc, that file will be opened without its installation s/w....I know this is used without the code.. creating a .exe file i hav to write a code..
View 2 RepliesI want to create a big list box that has lots of default values in many lines so they can then be edited later.Right now I have in my initializer:
Dim counter As Integer = 0
For counter = 0 To counter = totalNumber
listBoxThingy.Items(counter) = ("DEFAULT DETAILS TO BE COMPLETED")
Next
with my list box called listBoxThingy and totalNumber a previously defined constant of how many items I want in my list box.yet when I try to run the code I always just end up with the first list value containing the text.Even if I put a counter=counter+1 it still only gives me the one completed value of my list box?
I am having difficulty trying to come up with the code logic for having program calculate three different runners scores and placing them as First, second or third place standings, dependent on their times (seconds).
View 3 RepliesHow can I create a confirmation popup box into my Windows Form project? I use SQL Server Compact and Visual Studio 2008 Pro.At the moment I have some buttons and operations that delete selected rows straight from my database.
What I want to do, is have those buttons continue with the coded operation if the user clicks "OK" on the confirmation box.The box should be like the MsgBox, but with two selections: "OK" and "CANCEL".
P.S. I have several places to include that confirmation operation.
is there any way to create a cookie using vb.net?
View 4 RepliesCreating a CSV reader?
View 9 RepliesI'm trying to develop 2 companion applications. One application will be a FileSystemWatcher service application that will create/maintain a database containing file metadata (file properties) from a specific folder structure on the user's C drive. The other application is executed by the user which contains edit boxes pertaining to the metadata. As the user enters data in the edit boxes, the code will execute an SQL statement which in turn will display a list of file matching the entered criteria.
I'm thinking about using Microsoft Access as the database since all users have it but I'm willing to use another database format as long as it something intrinsic to the Windows XP 64 bit system (i.e. I don't want to install another database application in order to utilize its database format). So, do you have a suggestion on a database format? Do you have some pointers or links, on how to create database file and tables on the fly? Should I use DAO or ADO or something else? I'd prefer to work in VB.NET.
I created a new class project. I added a new COM object.The .ddl contains a single Public Function and one Public method. The method contains one line of code, a msgbox.I have "Register for COM interop" checked in the Project>Configuration>Compile page.I have ComVisible(true) in the AsseblyInfo.vb file.I use RegAsm to register the .dll and the .tlbI have used RegAsm to create a .reg file and then imorted successfully into the registry. If I open Excel, and go to Macro I cannot add the .dll as a refernce. The exact message I get is "Can't add a refernce to a specified file".I can reference the .tlb file and the Intelisense works. However, when the Excel Macro code runs I get the error, "Can't find file".I don't really expect anyone to download it to solve my problem. But if you become as frustrated as I am, I thought it might help to see the actual files. Be aware that I enclosed the .reg file from the RegAsm process. You can view it by opening notepad first and browsing for it. Do not click on the .reg file as I think that might modify your registry.
View 2 Repliesim trying to create a .dll called PDTKey.dll (for example) that will hold all of my applications Product Keys..and when the user inserts a Product key into the main application..it searchs in PDTKey.dll to see if the Poduct key specified is there..
View 13 Replies