Sheep Will Follow And Who Started Doing Patterns In AVATAR Pictures?
Aug 29, 2009Who started the pattern making in AVATAR pictures??I've seen none with circles, ovals or any curves in yet either.
View 11 RepliesWho started the pattern making in AVATAR pictures??I've seen none with circles, ovals or any curves in yet either.
View 11 RepliesI've uploaded in SkyDrive my project to give a better picture of my problem:Cascading Combobox works just once in _SelectionChangeCommitted, and, DataGridView do not follow 3rd Combobox filter?
View 2 RepliesI have 2 questions about the MSN API
1. How can I change the msn avatar image?
2. I got all my onnline contacts in a listbox, but how do I send a message to them all?
I need to know what current user's avatar is... e.g. this one: not the name of the avatar but the image (bitmap)
View 4 Repliesim a student ,im doing my final year project,its for deaf students, i want to know how can i create 3D human character? how can i control that human characters movements via a vb or c# program such as when im type in a text box "Right hand" The 3D model shod raise his/her right hand are their any suitable libs for my need
View 3 RepliesI'm supposed to write a program that displays the following patterns, one below the other:
(1)
*
**
***
****
[code]....
I get the first pattern using this code.
For i As Integer = 1 To 10 'number of row
For j As Integer = 1 To i 'number of *
Console.Write("*")
[code]....
When I try to do the 2nd pattern I get a square of 10 asterisks.Here's what I have:
For l As Integer = 1 To 10 'number of new rows
For k As Integer = 10 To 1 Step -1
Console.Write("*")
[code]....
I'd like to tell a regex statement to get the text between two patterns IE: find /* and */ and get all text between it.
I can do Dim rRegex As New Regex("/*|*/"), which will find all matches of /* and */ in order, but what can I do to get the text between them?
(I think that regex is correct, I might be wrong though)
I want each Match from my rRegex variable to return the text between the two patterns in the regex, if that makes sense.
Im using a black n white image of a human as my back ground and panels to display the same bits in color when the area is clicked. What isn't working for me is the panels are slightly overlapped and one will always be on top of the other. it is transparent so you can see the back ground, but not the panel underneath it when it has a picture in it.
View 6 RepliesThis program would allow users to click a button and display three different types of patterns (shown below). The user could also enter the number of rows they wanted to display and a character that they wanted to use for the pattern (*, &, etc).[code]...
View 3 RepliesWhen you do GetFiles() you can specify a search pattern such as *.txt. How can I specify multiple patterns. For example, in windows search you do *.jpg;*.bmp;*.gif. I tried that but no luck and the msdn not work. Is this possible?
View 11 RepliesThe following code works fine when it doesn't detect any dublicate patterns. Is it possible to somehow alter to to also work with dublicate patterns? (i.e. to color duplicate patterns as well and nto just unique ones) Any ideas? [code]
View 1 RepliesI need to read a text file like this
MyItemName = Description @ MoreInfo
Now I need to convert this 3 fields in to a table. using the '=' and '@' as pattern.
Recently I needed to compare a suggested pattern for IDisposable and object finalization with the auto-generated one we which VS2005/VB.NET provide. We have used the auto-generated one a fair bit, but after looking it the two side by side I had a number of questions about the VB.NET implementation..
[Code]...
Overall I am confused by the supposed added value of having an extended code-path that executes when Dispose() is called explicitly(as opposed to having a common path that is executed regardless of whether or not Dispose() was called explicitly). how it does anything other than delay the actual release of managed resources if Dispose() isn't called directly. In essence it seems to only work to make the managed resources unreachable in the object graph, orphaning them until the 2nd GC run rather than freeing them at a point where they are known to be no longer needed.
As a continuation of my other thread, "Finding A Pattern without a string Array (http:[url]....)", I would like to continue asking questions about enhancing a scanner with a few things:
1. Here is my code for finding signatures in a file:
'First the Signature Class:
Interface Signature
End Interface[code]......
Background:I have a base class and several inherited derived classes. The derived classes don't always need to have the same properties. If any properties are shared among the derived classes, those properties would live at the base class level ('Contents', for example).Similarly, GoodDocument below has 'GoodThings' but would not want/need to have 'BadThings'.I want to treat instances of both 'GoodDocument' and 'BadDocument' as type 'Document'
public mustinherit class Document
public property Contents as string
public sub new()...
[code]....
I have a class named "Account":
[code]...
In my form, I have an ArrayList and I add a new Account to it. Then when I'm done I call the Sort() method... it doesn't seem to work! I want the Accounts with the highest Avatars at the top of the ArrayList.
[code]...
I want to find a way to speed up this code.if you look at the condition of If calculated Then in the code below, this is what slowing down the code.While the code provided seem fast with Const initBit = 4 try it with something over 12.
I want to be able to use this code (with calculated param as True) with initBit of 20 or more.
Beware that 20 or more might require a gig or more of ram and/or compiled as x64.
C# code (converted with an online tool from VB.NET):
[Code]...
If we won't know what Exception will be thrown then why cannot we catch a general exception? I just cannot follow this and some more.
View 14 RepliesIf we have a htmlanchor element. Is there an elegant way to know whether the link is no follow or do follow after taking into account that tag and context of the links.
View 4 RepliesI have anchored textboxes to follow form resizing but buttons stay in the same place :/ Any ideas? (Sorry if this is a "Noob" question)
View 1 RepliesEarlier I was working on a project, and I added a StatusToolStrip and the the ToolStrip I added a label and a progress bar. The label will say the current sub or function that is in progress and the progress bar will show how far along it is through the sub or function. I have tried this myself but I cannot figure it out as I rarely use progress bars.
An example of a code that I would like the progress bar to show would be like this:
Private Sub StopServer_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles StopServer.Click
'Checks to give server notice
If My.Settings.warningmessages = True Then
Dim cmd As String = My.Settings.warningmessagetext(2)
[Code] .....
So while the sub is running the label would say "Stopping Server" and the progress bar would show how far along the sub is.
I have a short little program that has an image follow my mouse cursor. But the problem is that the image keeps drawing itself over and over. I only want 1 image following my mouse.
Public Class Form1
Private Sub Form1_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseMove
Dim myBitmap As System.Drawing.Bitmap
Dim myGraphics As Graphics
[Code] .....
i want to make a custom mouse cursor but I found that can be hard so I want to go the next best route. I want to see how you make an image follow the mouse pointer. I assume it would use some kind of image = mousepinter new point (x, y) or somethign like that. Suggestions or samples? In the end i want to take this code snippet and make a duck hunt game and a whack a mole type game
View 10 RepliesI'm making a minigame where the user moves their mouse around a picture and a little image of a stick figure follows that image. I've got part of it to move, but it only moves up and down. I've tried to change the code to go by width and height but it wont go into debugging even though it shows know error.[code]...
View 4 RepliesIn my application, i want to make the user write the code by himself. Like, he have a textbox, there he is going to put the code like, msgbox("Hello") then when he press the button, the msgbox will open.
View 1 RepliesI am ready to deploy my vb.net project to my client computer.In my development computer I have crystal report 9, sql server express and .net frame work 3.5 installed.My Client computer hasn't got anything installed there.I am trying to making msi installer so that it will be easy for my client to install.I created the new solutions -> setup type project, added the project on it and build it.it successfully created the msi installer but it doesn't installs the sql server express and crystal report.How do i make the installer with crystal report and sql server and also with db
View 1 Replieshow can I make a TextBox follow the mouse cursor on a simple form?
View 2 RepliesI have an object that looks like follows:
Public Class MyObject
Public Property Key as Intger
get 'Elided for clarity
[code].....
I want to click this button Follow twitter in webbrowser
</div>
<div id="follow_actions_17852343" class="follow-actions YahooMovies">
<div class="follow-control">
<div id="follow_control">
[code].....
In VB.Net with Winforms how do I make an image follow the cursor even when it leaves the form? I want to do this during a drag and drop operation. BCL and/or GDI is better for my usecase than P/Invokes.
If you are familiar with PeaZip, it does something of this sort when dragging a file from it's interface.