Multiple Queue make them work togetter??

Hello 
i got 2 rows with 15 buttons in eatch + 1 btnadd and 1 btnremove at eatch end of the rows 
when i add.... i add colors backgrounds ... 
9 difrend colors to add 
i got 2 Queues 
im wondering is there any way to make the Qs working togetter.. 
like if i got 2 blue colors in row 1 and 2 blue in row2 it would tell me theres 4 total in label31
Dim Q1 As New Queue(Of Integer)
Dim Q2 As New Queue(Of Integer)
Dim labels1 As New List(Of Label)
Dim labels2 As New List(Of Label)
Dim buttons1 As New List(Of Button)
Dim buttons2 As New List(Of Button)
Dim priority As Integer = 0
Dim itemscount As Integer
labels2.Add(Label31)
labels2.Add(Label32)
labels2.Add(Label33)
labels2.Add(Label34)
labels2.Add(Label35)
labels2.Add(Label36)
labels2.Add(Label37)
labels2.Add(Label38)
labels2.Add(Label39)
labels1.Add(Label31)
labels1.Add(Label32)
labels1.Add(Label33)
labels1.Add(Label34)
labels1.Add(Label35)
labels1.Add(Label36)
labels1.Add(Label37)
labels1.Add(Label38)
labels1.Add(Label39)
buttons2.Add(Button30)
buttons2.Add(Button29)
buttons2.Add(Button28)
buttons2.Add(Button27)
buttons2.Add(Button26)
buttons2.Add(Button25)
buttons2.Add(Button24)
buttons2.Add(Button23)
buttons2.Add(Button22)
buttons2.Add(Button21)
buttons2.Add(Button20)
buttons2.Add(Button19)
buttons2.Add(Button18)
buttons2.Add(Button17)
buttons2.Add(Button16)
buttons1.Add(Button15)
buttons1.Add(Button14)
buttons1.Add(Button13)
buttons1.Add(Button12)
buttons1.Add(Button11)
buttons1.Add(Button10)
buttons1.Add(Button9)
buttons1.Add(Button8)
buttons1.Add(Button7)
buttons1.Add(Button6)
buttons1.Add(Button5)
buttons1.Add(Button4)
buttons1.Add(Button3)
buttons1.Add(Button2)
buttons1.Add(Button1)
Private Sub btnAdd1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnadd1.Click
If Q1.Count < 15 Then
Q1.Enqueue(priority)
showqueue1()
End If
My.Settings.Save()
End Sub
Private Sub btnRemove1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnremove1.Click
If Q1.Count > 0 Then
Dim I As Integer = Q1.Dequeue()
showqueue1()
End If
My.Settings.Save()
End Sub
Private Sub btnadd2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnadd2.Click
If Q2.Count < 15 Then
Q2.Enqueue(priority)
showqueue2()
End If
My.Settings.Save()
End Sub
Private Sub btnremove2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnremove2.Click
If Q2.Count > 0 Then
Dim I As Integer = Q2.Dequeue()
showqueue2()
End If
My.Settings.Save()
End Sub
Private Sub showqueue1()
Dim B As Integer = 0
For B = 0 To buttons1.Count - 1
buttons1(B).BackColor = Color.White
Next B
B = 0
For Each I As Integer In Q1
Select Case (I)
Case 1 : buttons1(B).BackColor = Color.Blue
Case 2 : buttons1(B).BackColor = Color.Red
Case 3 : buttons1(B).BackColor = Color.Yellow
Case 4 : buttons1(B).BackColor = Color.Brown
Case 5 : buttons1(B).BackColor = Color.Orange
Case 6 : buttons1(B).BackColor = Color.Pink
Case 7 : buttons1(B).BackColor = Color.Black
Case 8 : buttons1(B).BackColor = Color.Green
Case 9 : buttons1(B).BackColor = Color.White
End Select
B += 1
Next
Dim ItemCount(8) As Integer
For Each I As Integer In Q1
ItemCount(I - 1) += 1
Next
For J As Integer = 0 To 8
labels1(J).Text = ItemCount(J)
labels1(J).Text = ItemCount(J)
labels1(J).Text = ItemCount(J)
labels1(J).Text = ItemCount(J)
labels1(J).Text = ItemCount(J)
labels1(J).Text = ItemCount(J)
labels1(J).Text = ItemCount(J)
labels1(J).Text = ItemCount(J)
Next J
End Sub
Private Sub showqueue2()
Dim B As Integer = 0
For B = 0 To buttons2.Count - 1
buttons2(B).BackColor = Color.White
Next B
B = 0
For Each I As Integer In Q2
Select Case (I)
Case 1 : buttons2(B).BackColor = Color.Blue
Case 2 : buttons2(B).BackColor = Color.Red
Case 3 : buttons2(B).BackColor = Color.Yellow
Case 4 : buttons2(B).BackColor = Color.Brown
Case 5 : buttons2(B).BackColor = Color.Orange
Case 6 : buttons2(B).BackColor = Color.Pink
Case 7 : buttons2(B).BackColor = Color.Black
Case 8 : buttons2(B).BackColor = Color.Green
Case 9 : buttons2(B).BackColor = Color.White
End Select
B += 1
Next
Dim ItemCount(8) As Integer
For Each I As Integer In Q2
ItemCount(I - 1) += 1
Next
For J As Integer = 0 To 8
labels2(J).Text = ItemCount(J)
labels2(J).Text = ItemCount(J)
labels2(J).Text = ItemCount(J)
labels2(J).Text = ItemCount(J)
labels2(J).Text = ItemCount(J)
labels2(J).Text = ItemCount(J)
labels2(J).Text = ItemCount(J)
labels2(J).Text = ItemCount(J)
Next J
End Sub
Private Sub Label31_Click(ByVal sender As System.Object, e As System.EventArgs) Handles Label31.Click
itemscount = 1
My.Settings.Save()
End Sub
Private Sub Label33_Click(ByVal sender As System.Object, e As System.EventArgs) Handles Label33.Click
My.Settings.Save()
itemscount = 3
End Sub
Private Sub Label35_Click(ByVal sender As System.Object, e As System.EventArgs) Handles Label35.Click
My.Settings.Save()
itemscount = 5
End Sub
Private Sub Label37_Click(ByVal sender As System.Object, e As System.EventArgs) Handles Label37.Click
My.Settings.Save()
itemscount = 7
End Sub
Private Sub Label39_Click(ByVal sender As System.Object, e As System.EventArgs) Handles Label39.Click
My.Settings.Save()
End Sub
Private Sub Label32_Click(ByVal sender As System.Object, e As System.EventArgs) Handles Label32.Click
itemscount = 2
My.Settings.Save()
End Sub
Private Sub Label34_Click(ByVal sender As System.Object, e As System.EventArgs) Handles Label34.Click
My.Settings.Save()
itemscount = 4
End Sub
Private Sub Label36_Click(ByVal sender As System.Object, e As System.EventArgs) Handles Label36.Click
My.Settings.Save()
itemscount = 6
End Sub
Private Sub Label38_Click(ByVal sender As System.Object, e As System.EventArgs) Handles Label38.Click
My.Settings.Save()
itemscount = 8
End Sub
Private Sub RadioButton1_CheckedChanged(ByVal sender As System.Object, e As System.EventArgs) Handles RadioButton1.CheckedChanged
priority = 1
End Sub
Private Sub RadioButton3_CheckedChanged(ByVal sender As System.Object, e As System.EventArgs) Handles RadioButton3.CheckedChanged
priority = 3
End Sub
Private Sub RadioButton2_CheckedChanged(ByVal sender As System.Object, e As System.EventArgs) Handles RadioButton2.CheckedChanged
priority = 2
End Sub
Private Sub RadioButton4_CheckedChanged(ByVal sender As System.Object, e As System.EventArgs) Handles RadioButton4.CheckedChanged
priority = 4
End Sub
Private Sub RadioButton5_CheckedChanged(ByVal sender As System.Object, e As System.EventArgs) Handles RadioButton5.CheckedChanged
priority = 5
End Sub
Private Sub RadioButton6_CheckedChanged(ByVal sender As System.Object, e As System.EventArgs) Handles RadioButton6.CheckedChanged
priority = 6
End Sub
Private Sub RadioButton7_CheckedChanged(ByVal sender As System.Object, e As System.EventArgs) Handles RadioButton7.CheckedChanged
priority = 7
End Sub
Private Sub RadioButton8_CheckedChanged(ByVal sender As System.Object, e As System.EventArgs) Handles RadioButton8.CheckedChanged
priority = 8
End Sub
Private Sub RadioButton9_CheckedChanged(ByVal sender As System.Object, e As System.EventArgs) Handles RadioButton9.CheckedChanged
priority = 9
End Sub

i got 2 Queues 
This is the complete code for 2 queues and 3 priorities.  You can extend this to any number of queues and priorities by adding the controls and adjusting the counts.   You can see that the extra code is almost entirely in the setup - this
can be eliminated if you create the controls at runtime.
Public Class Form18
Dim Q1 As New Queue(Of Integer)
Dim Q2 As New Queue(Of Integer)
Dim Buttons1 As New List(Of Button)
Dim Buttons2 As New List(Of Button)
Dim Buttons As New List(Of List(Of Button))
Dim Labels1 As New List(Of Label)
Dim Labels2 As New List(Of Label)
Dim Labels As New List(Of List(Of Label))
Dim LabelsT As New List(Of Label)
Dim Queues As New List(Of Queue(Of Integer))
Dim Priority As Integer = 0
#Region "setup"
Private Sub Form18_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Buttons1.Add(Button14)
Buttons1.Add(Button13)
Buttons1.Add(Button12)
Buttons1.Add(Button11)
Buttons1.Add(Button10)
Labels1.Add(Label10)
Labels1.Add(Label11)
Labels1.Add(Label12)
Buttons2.Add(Button24)
Buttons2.Add(Button23)
Buttons2.Add(Button22)
Buttons2.Add(Button21)
Buttons2.Add(Button20)
Labels2.Add(Label20)
Labels2.Add(Label21)
Labels2.Add(Label22)
Buttons.Add(Buttons1)
Buttons.Add(Buttons2)
Labels.Add(Labels1)
Labels.Add(Labels2)
LabelsT.Add(LabelT1)
LabelsT.Add(LabelT2)
LabelsT.Add(LabelT3)
Queues.Add(Q1)
Queues.Add(Q2)
btnAdd1.Tag = 0
btnAdd2.Tag = 1
btnRemove1.Tag = 0
btnRemove2.Tag = 1
End Sub
#End Region
Private Sub rbtLow_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles rbtLow.CheckedChanged
Priority = 0
End Sub
Private Sub rbtStandard_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles rbtStandard.CheckedChanged
Priority = 1
End Sub
Private Sub rbtUrgent_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles rbtUrgent.CheckedChanged
Priority = 2
End Sub
Private Sub btnAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles _
btnAdd1.Click, _
btnAdd2.Click
Dim Index As Integer = CType(sender, Button).Tag
If Queues(Index).Count < 5 Then
Queues(Index).Enqueue(Priority)
showqueue()
Else
MsgBox("Queue " & (Index + 1).ToString & " is full.")
End If
End Sub
Private Sub btnRemove_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles _
btnRemove1.Click, _
btnRemove2.Click
Dim Index As Integer = CType(sender, Button).Tag
If Queues(Index).Count > 0 Then
Dim I As Integer = Queues(Index).Dequeue()
MsgBox("Item " & I.ToString & " was removed.")
showqueue()
Else
MsgBox("Queue " & (Index + 1).ToString & " is empty.")
End If
End Sub
Private Sub showqueue()
For k As Integer = 0 To Queues.Count - 1
Dim B As Integer = 0
For B = 0 To Buttons(k).Count - 1
Buttons(k)(B).BackColor = Color.White
Next B
Dim Colors() As Color = {Color.Green, Color.Yellow, Color.Red}
B = 0
For Each I As Integer In Queues(k)
Buttons(k)(B).BackColor = Colors(I)
B += 1
Next
Dim ItemCount(2) As Integer '(8)
For Each I As Integer In Queues(k)
ItemCount(I) += 1
Next
For J As Integer = 0 To 2 '8
Labels(k)(J).Text = ItemCount(J)
Next J
Next k
Dim TotalCount(3) As Integer '(14)
For K = 0 To 1 '0 to 14
For Each I As Integer In Queues(K)
TotalCount(I) += 1
Next
Next K
For J As Integer = 0 To 2 '(8)
LabelsT(J).Text = TotalCount(J)
Next J
End Sub
End Class

Similar Messages

  • All of my purchased apps (games) and apps such as Weight Watchers, Facebook, WeatherBug, Sports and Pinterest, Notes, Nook, etc.  are all locked up.  They simply flash, then nothing!  How can I fix this to make them work again.

    First Issue:   All of my purchased apps (games) and apps such as Weight Watchers, Facebook, WeatherBug, Sports and Pinterest, Notes, Nook, etc.  are all locked up.  They simply flash, then nothing!  How can I fix this to make them work again?  If I have to delete the purchased apps, will they still be in iTunes, or will I have to re-purchase them? 
    Second Issue:   When I synced to my desktop (Windows XP)  All my photos loaded onto my iPad2.  I don't really want all 3000 + pics on my ipad!!  How do I get them off?  Next time I synced, they loaded again!  Now I have so many duplicates!  How do I get rid of the photos and prevent this from happening again?

    If none of your third-party apps are working, but the Apple built-in ones are ok, then try downloading any free app from the store (as that appears to reset something) and then re-try them - the free app can then be deleted. In terms of re-downloading apps then you can do so as long as they are still available in the store, and you use the same iTunes account as you originally used to buy them, then you should be able to re-download them for free : http://support.apple.com/kb/HT2519
    For synced photos, then with the iPad connected to and selected on the left-hand side of your computer's iTunes, then on the Photos tab on the right-hand side you can control which photos are synced to the iPad : http://support.apple.com/kb/HT4236 . If you don't want any photos to be synced then try selecting just an empty folder.

  • I have a new Bose sounddock with a lightning connector, but my iPod has the old style connector. Can I get an adapter to make them work together?

    I have a new Bose sound dock with a lightning connector but my iPod has the old style connector
    Can I get an adapter to make them work together?

    Alternatively...
    is this what you're after?
    If so, have a look here: http://www.amazon.co.uk/Lightning-female-30-pin-Dock-Cable-Adapter/dp/B00DZN3GZK /ref=pd_sim_sbs_ce_1
    or this one...
    http://www.amazon.co.uk/SANDBERG-440-45-Adaptor-Lightning-Connector/dp/B009KZZ3L C/ref=sr_1_16?ie=UTF8&qid=1382801610&sr=8-16&keywords=30+pin+to+lightning+adapto r
    Or google "lightning female to 30-pin dock male cable adaptor". The cruicial part is female lightning to male 30-pin ends.
    The Apple cable is a female 30-pin to male lightning end.

  • I have pages and keynote on my iPad, how to i make them work on mac air i have bought later

    i have Pages and Keynote, and others of course, on my iPad, how to i make them work on mac air i have bought recently ?

    Welcome to Apple Support Communities
    The iPad uses iOS, and your MacBook Air uses OS X, which are different operating systems with different apps.
    iWork apps (Keynote, Pages and Numbers) have got two version: for OS X and for iOS. You already purchased Keynote and Pages for iOS, so you can install them in all your iPhones, iPads and iPods touch for free, but not in the MacBook Air, because the iOS version isn't supported. You have to buy Keynote and Pages for OS X in the Mac App Store for your MacBook Air.
    To access to the Mac App Store, press its icon in the Dock or go to  > App Store

  • I have new printer Photosmart C410 and osx10.4.11. What do I need to do to make them work together?

    I have new hp printer Photosmart C410a and Mac osx10.4.11. What do I need to do to make them work together?
    My computer is:
      Model Name:    iMac
      Model Identifier:    iMac6,1
      Processor Name:    Intel Core 2 Duo

    Here is what you need to order:
    http://store.apple.com/us/product/MC573Z/A?fnode=MTY1NDAzOA
    Hope you are backing up anyway, but be sure you have an up to date backup. Repair permissions in Disk Utility, then restart from the Snow Leopard disk you buy (in the above link) and do an upgrade (only changes the OS), not a clean install (which wipes all data). Others on here may chime in on their thoughts on how best to do this, but I've never had trouble over 20+ years doing it this way. If you aren't having crashes and strange problems now you should be fine. Please write back or start a new thread (you'll get more help than continuing in this thread which has printing problems in the header) that has something like "Need help upgrading from Tiger to Snow Leopard" that will attract more help.

  • Compatibility of Firefox 6 with Trend Micro titanium - how can I make them work together? My OS is Win XP (service pack 2 & 3)

    Compatibility of Firefox 6 with Trend Micro titanium - how can I make them work together?
    I have not downloaded FF6 yet because it is not compatible with my virus software - has this changed? If not, is there a simple "fix" or workaround?
    Thanks.

    Found the following on the TrendMicro forum:
    *TrendMicro forum: http://community.trendmicro.com/
    *Found fix in this thread: http://community.trendmicro.com/t5/Home-and-Home-Office-Forum/Firefox-6-amp-TM-Firefox-Extension-6-5-0-1234/td-p/43735 (posted by PartyJetsetGo, Customer Service Manager)
    *[Hot Fix] B1306: http://esupport.trendmicro.com/solution/en-us/1059243.aspx
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • Image capture won't recognize my ScanSnap iX500.  How do I make them work together?

    Image capture won't recognize my ScanSnap iX500.  How do I make them work together?

    To use Image Capture you need an ICA driver for your scanner. Checking the Fujitsu web site for drivers for the iX500 I only see a ScanSnap manager for OS X. No mention of an ICA driver. So you may need to contact your local Fujitsu support.

  • I´m new at Garageband and Mainstage. How can I make them work together?

    I´m new at Garageband and Mainstage. How can I make them work together?

    You may want to download and read the manual for your phone. It may answer a lot of the basic questions.
    http://support.apple.com/manuals/#iphone
    There is an app on your phone called "Mail". Yes, it's for reading your email.
    Best of luck.

  • Sorry but i dont speak a good english, i have a problem with my ipod the apps Twitter,Facebook not open but messenger(fb) music yes,I can do to make them work?

    helpme please,sorry but i dont speak a good english, i have a problem with my ipod the apps Twitter,Facebook not open but messenger(fb) music yes,I can do to make them work?

    See:
    iOS: Troubleshooting applications purchased from the App Store
    Restore from backup. See:
    iOS: How to back up
    Restore to factory settings/new iPod

  • I bought the pack for students adobe creative cloud, already made the payment three days ago but when opening programs like photosop and illustrator puts the trial period has expired, how I can make them work?

    I bought the pack for students adobe creative cloud, already made the payment three days ago but when opening programs like photosop and illustrator puts the trial period has expired, how I can make them work?

    Hello Ibonedm,
    Sol 1. Please try sign out from Creative cloud Desktop App and quit it.
    1. Launch Creative Cloud application manager.
    2. Click the gear icon in the upper-right corner and select Preferences.
    3. In the Preferences menu, under General, click the Account tab.
    4. Click Sign Out from Creative Cloud.
    Then re-sign in and launch Photoshop CC 2014 and check.
    Sol 2. Check your Hosts file.
    Windows
    1. Choose Start > Run, type %systemroot% \system32\drivers\etc, and then press Enter.
    2. Locate Hosts file and move it to Desktop
    3. Right-click the hosts file and select Open. Select Notepad for the application to open the hosts file.
    4. Back up the hosts file: Choose File > Save As, save the file as hosts.backup, and then click OK.
    5. Search the hosts file for entries that reference activate.adobe.com (for example, 127.0.0.1 activate.adobe.com) and delete these entries.
    6. Save and close the file and move it back to Etc folder.
    Mac OS
    1. Log in as an administrator to edit the hosts file in Mac OS.
    2. In a Finder window, choose Go > Go To Folder.
    3. Type /etc.
    4. Select the hosts file and move it on Desktop  open it.
    5. Back up the hosts file: Choose File > Save As, save the file as hosts.backup, and then click OK.
    6. Search the hosts file for entries that reference activate.adobe.com (for example, 127.0.0.1 activate.adobe.com) and delete these entries.
    7. Move Hosts file back to etc folder
    8. Save and close the file.
    Then try launching Photoshop CC 2014 or Illustrator CC 2014
    If prompt for License this software, please click on it and sign in with the Adobe ID and Password which you have used to purchase the subscription and check if you can activate and use the products.
    Please respond , if any issue.
    All the best
    Loveneesh.

  • In Lion, sometimes clicking on close button or tabs doesn't respond as if the buttons aren't there, i have to move the cursor away and move back to make them work again, anyone can help me?

    I'm not sure if anyone had run into this issue. Clicking the same place on the display sevral times will cause the click to stop working. For example, if i open safari and click on the Show Reading List button, it will work the first time i click it, but stop responding to my command as i click more, as if the button is not there, i have to move away the cursor and click somewhere else and move back to click the button to make it work again. And it happened everywhere, not just the show reading list button. The scrolling and moving are normal.
    In fact, I have my trackpad replaced in an apple store for this issue but it turned out this is not a hardware problem, and it is not only my problem. Ironically, i found the same issue on several of the demo Macs inside the apple store. So anyone can help me here? Thanks.

    Hi manni394, what version of Firefox are you running now?
    Firefox 22 has a new way of setting the default zoom level: it is based on your Windows font size setting. So, if you set Windows fonts to 125% (enlarged 25%), your Firefox pages also will be enlarged 25%. On pages that do not adjust their layout, you may get a horizontal scroll bar.
    To reduce the zoom on a page, hold Ctrl and tap the - key (the one on the numeric keypad or the one on the number row of the keyboard). The zoom should be reduced for each tap.
    If you want to globally adjust your zoom level to be lower, you can use either of these add-ons:
    * [https://addons.mozilla.org/firefox/addon/default-fullzoom-level/ Default FullZoom Level]
    * [https://addons.mozilla.org/firefox/addon/nosquint/ NoSquint]
    If you already have one of those add-ons, check the default/global zoom level in case it needs to be adjusted.

  • Servelts: how to make them work?

    Sorry to be asking this again, but i don't understand why I'm getting an error when I import servlets in my program. I have JDK SE 1.5. could someone please tell me what to do.
    I have no idea as to copy what to what!! PLEASE help me.
    please tell me what i have to install to make it work. I have already installed the Tomcat server.

    Sorry to be asking this again, but i don't understand
    why I'm getting an error when I import servlets in my
    program. Sounds like you need to add the servlet-api.jar to your compile-time classpath. That JAR file can be found in your Tomcat distro, under the common/lib directory.
    Hope this helps!

  • The address bar and search bar do not function(no plugins/addons). How do i make them work?

    I recently updated firefox and have a problem similar to what others have posted here. When typing a URL in the address bar and hitting enter there is no response. The major difference is I do not have any plugins or add ons or new themes. I ran combofix and found no virus. I uninstalled then reinstall FF. Didn't work. Then i went into registry and manually removed all FF files and reinstalled. Didn't work. I am currently using chrome and would be happy to come back to FF if it starts to work again. Any ideas guys?
    Thanks!

    Try:
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file
    You can try to check and repair the places database with this extension:
    *https://addons.mozilla.org/firefox/addon/places-maintenance/
    You can still try Safe mode to check for other causes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Try to create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    *https://support.mozilla.org/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins" in case there are still problems.
    If the new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • I torrented new songs but itunes wont play them how do i make them work?

    i torrented new music and itunes wont play them saying the files cannot be found the files are still on the computer and i can find them just find but itunes cant. how do i make itunes recognize, find and play my new music?

    I don't think it's your iPod. I reckon it's something to do with the tracks themselves. I've been searching through similar posts and have tried the following suggestions (without any luck):
    - swap you iPod cable to another USB port and re-sync
    - whilst the iPod is connected, deauthorise your computer in iTunes and then authorise it
    - re-created my iTunes library (as your iPod can only sync with one library, it will wipe clean your iPod and re-sync it) - http://docs.info.apple.com/article.html?artnum=93313
    - have even restored my iPod
    and still the 3 tracks will not play. However, I have subsequently downloaded another track (different album and artist) and that plays just fine. I have since contacted customer services about this and they have been very quick to respond, but unfortunately the re-download solution they proposed hasn't worked either so they have escalated the problem internally.
    One thing I have tried (and I think it's legit??), is to burn the tracks to a CD. Remove the originals from your iTunes library to another folder. Re-import the tracks back into iTunes and re-sync. I've tried this and the tracks will now play on my iPod. I believe the above process strips off the DRM, so maybe the problem lies with the DRM encoding and your iPod believes you don't have permission to play the tracks when in fact you do. If you don't feel comfortable about doing this, I would contact customer services.

  • Path branching game, choices, how to make them work?

    Basically, I want to make a simple frame by frame path branching game. The problem is that I know that writing in and filling in EVERY FRAME going all along for EVERY CHOICE PATH would be an insanely tedious amount of work.
    My basic project is reminiscent of japanese visual novels, and I've been looking for turtorials to help me with this style of role playing games, but all of the tutorials concentrated on the adventure RPGs. :\
    Being a novice at Actionscript, past working buttons to make it go to the next frame and stopping it, I was wondering if its possible to make a choice you make earlier in the game affect it later. Such as, you keep following the game normally afterwards, but depending on your choice you'll go to a different scene later.
    basically, this way I'd like to eliminate the need to make two duplicate paths with only minor variances to show the changes for some choices.
    Another thing that I would like to know if its possible to do, though this is less important, as I have yet to look for these things and I'm sure I can find them but.... a save/load system, easy to find I'm sure. And an unlocking system. Something so that once they hit a certain CG I can unlock it in a 'memories' menu on a main screen.
    I know my questions seem to be rare, but does anyone know how to accomplish this and can explain it in a way that even an actionscript noob like me can understand?

    I see. Thanks for the advice. My only problem is that depending on what i can do, I may need to write the script differently. All I need to be able to do is say, a person clicks a button that changes their frame to this one part of the story, then it returns to the normal story you see no matter what, is that later on, when it hits a certain point the flash can tell which choice he made and depending on that choice, display a different scene.
    Possibly even depending on a number of choices. I dont know actionscript or anything, but the simplest way i can think to do this would be if it were possible to make a value, then have it change depending on the choice a person makes. Only... As far as I can tell, i cant find such a function on CS3. An example may be... A value names 'Player Choice 1' Then have it so that when the player gets to chat choice and picks an option, the number for the option is set as the value. Such as...
    If player chooses 1, the value is set to one.
    Obviously this would mean the button for the first option would need the script to also change this value, provided such a value can be made. I've looked at a lot of beginners tutorials and nothing tells me even the beginnings of how I can make this. :/ I just need a point in the right direction.

Maybe you are looking for

  • Port to be open in Firewall

    Hi, A SQL2012 R2 Express server with reporting services (SSL enabled) is setup on a DMZ zone, the client is on a Trusted zone Port 80 + 443 should be open but 1443 is necessary or not ? Beside it will use the windows native authentication so 113 for

  • ITunes Library sharing error -3259

    Hi I am trying to share my iTunes library stored on my iMac (Leopard) with a mac mini (10.4.11). The library name appears in the shared list on the MacMini iTunes but when I click it, it doesn't open up, just hangs until I get an error message saying

  • HT2534 create new ID for free payment

    for the payment only 3 options so i cant creat the ID for free. Thanks, Joshela

  • PO requisition personalization Query_Want to hide Supplier field

    My client requirement is to hide supplier field in the po requisition form because requstor would not view the list of suppliers names in the LOV. I have tried to hide the SUPPLIER field but folder menu option is not active, without that i cannot hid

  • Crystal calling an R/3 RFC

    Hi folks, Can crystal handle internal tables commonly found in R/3 funtion modules/bapis?  How do you set it up?  They look like fields in Cyrstal with the name T_*.  And no data is coming back.  How do you loop through the records?  Thanks, Clint