Can't figure out Sprites

Okay so my partner and i have been working on this project for a while now and we are stuck with two thing. First we can't get the enemy sprite to go into the enemy picture box. Second we can't get the sprite sheet to shift down. We have tried multiple things
and we are stuck if someone could help that would be awesome.
Here is our code:
Option Strict On
Public Class frmMain
Dim ctr As SByte = 1
Dim playerSpeed As Byte = 5
Dim enemyMove As Boolean = False
Dim enemySpeed As Point = New Point(-10, 0)
Dim characterMain As PictureBox = New PictureBox()
Dim enemyMain As PictureBox = New PictureBox()
Dim titleScreen As PictureBox = New PictureBox()
Dim frames(8) As Bitmap
Dim Archer As Bitmap = New Bitmap("./Resources/Images/Character_Models/Archer_2.bmp")
Dim Warrior As Bitmap = New Bitmap("./Resources/Images/Character_Models/Warrior_2.bmp")
Dim Mage As Bitmap = New Bitmap("./Resources/Images/Character_Models/Mage_2.bmp")
Dim Boss As Bitmap = New Bitmap("./Resources/Images/Character_Models/Final_Boss.bmp")
Const CHARACTER_WIDTH As Short = 37
Const CHARACTER_HEIGHT As Short = 43
Public Sub clearScreen()
For Each screenControl As Control In Me.Controls
screenControl.Visible = False
screenControl.Enabled = False
Next
End Sub
Private Sub btnNewGame_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnNewGame.Click
lblTitle.Text = "Character Selection"
btnNewGame.Visible = False
btnRules.Visible = False
cboChar.Visible = True
btnStartGame.Visible = True
Me.Controls.Add(characterMain)
Me.Controls.Add(titleScreen)
Me.Controls.Add(enemyMain)
btnBack.Visible = True
End Sub
Private Sub btnRules_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnRules.Click
MessageBox.Show("Click new game to start new game", "Instructions", MessageBoxButtons.OK)
MessageBox.Show("Use WASD to move your character", "Instructions", MessageBoxButtons.OK)
End Sub
Private Sub btnStartGame_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnStartGame.Click
clearScreen()
PlayBackgroundSoundFile()
titleScreen.Size = New Size(576, 720)
enemyMain.Size = New Size(CHARACTER_WIDTH, CHARACTER_HEIGHT)
enemyMain.Location = New Point(0, 500)
characterMain.Size = New Size(CHARACTER_WIDTH, CHARACTER_HEIGHT)
characterMain.Location = New Point(0, 500)
titleScreen.Location = New Point(0, 0)
titleScreen.Visible = True
characterMain.Visible = True
characterMain.Enabled = True
enemyMain.Visible = True
enemyMain.Enabled = True
titleScreen.Image = Image.FromFile("./Resources/Images/Terrain/TitleBG.jpg")
titleScreen.SizeMode = PictureBoxSizeMode.StretchImage
Me.Size = titleScreen.Size
For x As Integer = 0 To 8
frames(x) = New Bitmap(CHARACTER_WIDTH, CHARACTER_HEIGHT)
Dim gr As Graphics = Graphics.FromImage(frames(x))
Dim leftPos As Integer
Select Case x
Case 1, 4, 7
leftPos = 32
Case 2, 5, 8
leftPos = 64
Case 3, 6, 9
leftPos = 96
End Select
gr.DrawImage(Boss, 0, 0, New RectangleF(leftPos, CSng(Int(x / 2) * 0), CHARACTER_WIDTH, CHARACTER_HEIGHT), GraphicsUnit.Pixel)
If cboChar.Text = "Archer" Then
gr.DrawImage(Archer, 0, 0, New RectangleF(leftPos, CSng(Int(x / 2) * 0), CHARACTER_WIDTH, CHARACTER_HEIGHT), GraphicsUnit.Pixel)
Else
characterMain.Image = Nothing
End If
If cboChar.Text = "Warrior" Then
gr.DrawImage(Warrior, 0, 0, New RectangleF(leftPos, CSng(Int(x / 2) * 0), CHARACTER_WIDTH, CHARACTER_HEIGHT), GraphicsUnit.Pixel)
Else
characterMain.Image = Nothing
End If
If cboChar.Text = "Mage" Then
gr.DrawImage(Mage, 0, 0, New RectangleF(leftPos, CSng(Int(x / 2) * 0), CHARACTER_WIDTH, CHARACTER_HEIGHT), GraphicsUnit.Pixel)
Else
characterMain.Image = Nothing
End If
Next
CenterToScreen()
End Sub
Private Sub frmMain_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
enemyMove = True
If tmrEnemyMove.Enabled = False Then
tmrEnemyMove.Enabled = True
End If
Select Case e.KeyCode
Case Keys.A
If ctr < 8 Then
characterMain.Location += New System.Drawing.Size(-1 * playerSpeed, 0)
ctr = CSByte(ctr + 1)
Else
ctr = 0
End If
characterMain.Image = frames(ctr)
Case Keys.S
If ctr < 8 Then
characterMain.Location += New System.Drawing.Size(0, playerSpeed)
ctr = CSByte(ctr + 1)
Else
ctr = 0
End If
characterMain.Image = frames(ctr)
Case Keys.D
If ctr < 8 Then
characterMain.Location += New System.Drawing.Size(playerSpeed, 0)
ctr = CSByte(ctr + 1)
'characterMain.Image.RotateFlip(RotateFlipType.RotateNoneFlipX)
Else
ctr = 0
End If
characterMain.Image = frames(ctr)
Case Keys.W
If ctr < 8 Then
characterMain.Location += New System.Drawing.Size(0, -1 * playerSpeed)
ctr = CSByte(ctr + 1)
Else
ctr = 0
End If
characterMain.Image = frames(ctr)
Case Keys.Escape
Me.Close()
End Select
Constrain(enemyMain, New Rectangle(New Point(0, 0), Me.Size))
Constrain(characterMain, New Rectangle(New Point(0, 0), Me.Size))
End Sub
Private Sub frmMain_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
CenterToScreen()
End Sub
Private Sub cboChar_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles cboChar.TextChanged
btnStartGame.Enabled = True
End Sub
Private Sub btnBack_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnBack.Click
lblTitle.Visible = True
btnNewGame.Visible = True
btnRules.Visible = True
btnBack.Visible = False
lblTitle.Text = "Reign of Pixel"
cboChar.Visible = False
btnStartGame.Visible = False
End Sub
Private Function Constrain(ByRef box As PictureBox, ByVal boundingBox As Rectangle) As Boolean
With box.Location
If (.X < boundingBox.X) Then
box.Location = New Point(boundingBox.X, .Y)
ElseIf (.X > (boundingBox.X + boundingBox.Width) - box.Width) Then
box.Location = New Point((boundingBox.X + boundingBox.Width) - box.Width, .Y)
End If
If (.Y < boundingBox.Y) Then
box.Location = New Point(.X, boundingBox.Y)
ElseIf (.Y > (boundingBox.Y + boundingBox.Height) - box.Height) Then
box.Location = New Point(.X, (boundingBox.Y + boundingBox.Height) - box.Height)
End If
End With
End Function
Private Sub tmrAnimation_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles tmrAnimation.Tick
While Keys.A = Keys.Down And ctr < 8
ctr = CSByte(ctr + 1)
If ctr <> 8 Then
tmrAnimation.Enabled = True
Else
tmrAnimation.Enabled = False
End If
End While
End Sub
Private Sub tmrEnemyMove_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles tmrEnemyMove.Tick
If (enemyMove = False) Then
tmrEnemyMove.Enabled = False
End If
If (Constrain(enemyMain, New Rectangle(New Point(0, 0), Me.Size))) Then
enemySpeed = New Point(enemySpeed.X * -1, enemySpeed.Y * -1)
End If
End Sub
Private Sub PlayBackgroundSoundFile()
My.Computer.Audio.Play("./Resources/Sound/ReignOfPixel.wav", AudioPlayMode.Background)
End Sub
End Class

If you have a sprite, you should pre-crop each frame into a list of image, that way as each frame elapses, you simply set the pictureboxes image to one of the pre-cropped images.
Don't forget to vote for Helpful Posts and
Mark Answers!
*This post does not reflect the opinion of Microsoft, or its employees.

Similar Messages

  • Can't figure out how to use home sharing

    Since the latest couple iTunes updates, my family and I can not figure out how to use home sharing. Everyone in our household has their own iTunes, and for a long time we would just share our music through home sharing. But with the updates, so much has changed that we can no longer figure out how to use it.
    I have a lot of purchased albums on another laptop in the house, that im trying to move it all over to my own iTunes, and I have spent a long time searching the internet, and everything. And I just can't figure out how to do it. So.... how does it work now? I would really like to get these albums from my moms iTunes, onto mine. I would hate to have to buy them all over again.
    If anyone is able to help me out here, that would be great! Thanks!

    The problem im having is that after I am in another library through home sharing, I can't figure out how to select an album and import it to my library. They used to have it set up so that you just highlight all of the songs you want, and then all you had to do was click import. Now I don't even see an import button, or anything else like it. So im lost... I don't know if it's something im doing wrong, or if our home sharing system just isn't working properly.
    Thanks for the help.

  • Something was hidden in a download and now these double green underlined hyperlinks show up everywhere, and pop ups too whenever I click on ANYTHING. I can't figure out how to find it and get rid of it.

    Something was hidden in a download and now these double green underlined hyperlinks show up everywhere, and pop ups too whenever I click on ANYTHING. I can't figure out how to find it and get rid of it.

    You installed the "DownLite" trojan, perhaps under a different name. Remove it as follows.
    Malware is constantly changing to get around the defenses against it. The instructions in this comment are valid as of now, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for more recent discussions or start a new one.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    /Library/LaunchAgents/com.vsearch.agent.plist
    Right-click or control-click the line and select
    Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "VSearch" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    /Library/LaunchDaemons/Jack.plist
    Restart the computer and empty the Trash. Then delete the following items in the same way:
    /Library/Application Support/VSearch
    /Library/PrivilegedHelperTools/Jack
    /System/Library/Frameworks/VSearch.framework
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    From the Safari menu bar, select
    Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    This trojan is distributed on illegal websites that traffic in pirated movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect much worse to happen in the future.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that the DownLite developer has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing, has not done so, even though it's aware of the problem. This failure of oversight is inexcusable and has compromised the value of Gatekeeper and the Developer ID program. You can't rely on Gatekeeper alone to protect you from harmful software.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • Can't figure out what is the code

    Hi
    I got following macro that will help me to run certain transaction.
    I just can't figure out where comments ends and where code starts so I was unable to run it for like 3 hours now.
    In other words
    I am trying to use Excel Macro that will get to active transaction in SAP and do waht I have recorded.
    'SAPGUI Macro for updating SAP from Excel data 'Prerequisites: '1. Script Recording and Playback from the SAPGui must be enabled by admin '2. The Excel list must be set up from top left corner of a worksheet '3. The worksheet with data must be the active sheet '4. There is no error handling. Build it yourself! '5. The script will update the active (current) SAP transaction'Instructions for use 'Record a macro of your update actions. 'Paste the session.findById stuff between the <== and ==> markers'Edit the literal values and replace with Trim(CStr(objSheet.Cells(x, y).Value)) 'where x and y are the row and column counters'Open up your Excel sheet with data (row 1 is ignored here) 'Fire the macro! '===========BEGIN BOILERPLATE=================== REMSet up connection to the SAP screen: If Not IsObject(application) Then Set SapGuiAuto = GetObject("SAPGUI") Set application = SapGuiAuto.GetScriptingEngine End If If Not IsObject(connection) Then Set connection = application.Children(0) End If If Not IsObject(session) Then Setsession = connection.Children(0) End If If IsObject(WScript) Then WScript.ConnectObject session, "on" WScript.ConnectObject application, "on" End If REMSet up connection to the Excel data to be keyed into SAP: Dim objExcel Dim objSheet, intRow, i Set objExcel = GetObject(,"Excel.Application") Set objSheet = objExcel.ActiveWorkbook.ActiveSheet session.findById("wnd[0]").maximize
    '===========END BOILERPLATE=====================
    'REM Example: Mark material for deletion in Plant using MM06 For i = 2 to objSheet.UsedRange.Rows.Count     'Assuming there is a header rowREM Find a cell and put its value in: REM Note: The section of the Script shown below can be recorded ' and edited to pick data from the Excel sheetstrCN = Trim(CStr(objSheet.Cells(i, 1).Value)) strWerks = Trim(CStr(objSheet.Cells(i, 2).Value)) '<== session.findById("wnd[0]/usr/ctxtRM03G-MATNR").text = strCN session.findById("wnd[0]/usr/ctxtRM03G-WERKS").text = strWerks session.findById("wnd[0]/tbar[0]/btn[0]").press session.findById("wnd[0]/usr/chkRM03G-LVOMA").selected = false session.findById("wnd[0]/usr/chkRM03G-LVOWK").selected = truesession.findById("wnd[0]/tbar[0]/btn[11]").press 'session.findById("wnd[0]/tbar[0]/btn[0]").press '==> Next

    Ok macro works and triggers actions from recorder. I was doing it with hope I will select data in SAP and paste in Excel AND/OR export file from SAP with data.
    If I record select column and then copy it. Script is recorded until selection . It ignores copy (i tried use mouse right click and copy AND manual alt+F12 and then copy from context menu)
    When I export recorder does open export window but does not writes the line relevant to clicking save.
    I found such bits
      'Choose the export format
      session.findById("wnd[1]/usr/subSUBSCREEN_STEPLOOP:SAPLSPO5:0150/sub:SAPLSPO5:0150/radSPOPLI-SELFLAG[1,0]").select
      session.findById("wnd[1]/tbar[0]/btn[0]").press
    'Choose the export filename
      session.findById("wnd[1]/usr/ctxtDY_FILENAME").text = "test.txt"
      session.findById("wnd[1]/usr/ctxtDY_PATH").text = "C:\Temp\"
    'Export the file
      session.findById("wnd[1]/tbar[0]/btn[0]").press
    But they dont seem to be relevant to my previous macro.
    Any quick fix to get data out of Excel

  • If I open a photo in "preview", multiple photos open. I just want to open one, but can't figure out how to do it.

    I keep multiple photos in a desktop folder to be quickly accessed by using Preview. But when I try to open ONE photo, it opens multiple photos. Can't figure out how to display just the single one that I select.  OS 10.7.2

    This is the resume feature of Lion. The last state of the application is saved when quitting (i.e last pictures viewed in Preview, last videos viewed in Quicktime etc).
    You can switch it off for Preview by copy and pasting the following in to the terminal application
    defaults write com.apple.Preview NSQuitAlwaysKeepsWindows -bool false

  • How do I use my iPhone to connect to the Internet. I down loaded safari v5.1.7 for my PC. I have added my iPhone to my computer but I can't figure out how to setup a hotspot or configure a network so my PC can access my phones data plan. Please help.

    And how am I supposed to answer my own question?

    I can't figure out how to respond so ill go this route. I can't seem to find the button/place to which I can choose, to turn on a hot spot. I have been through every option and searched to no avail. Could it be that my iPhone 4 is not hotspot capable as I was led to believe by the apple sales associate? Is there an app I can find to make my phone a wifi hotspot? So I can get on the Internet to view the pages I want that require adobe which this piece of **** software monger won't even support?

  • How do I use GarageBand as a amp/speaker to listen to my Electronic Drum set? I have a MIDI-USB cord already but I can't figure out how to listen to my set through the software using my computer speakers?

    How do I use GarageBand as a amp/speaker to listen to my Electronic Drum set? I have a MIDI-USB cord already but I can't figure out how to listen to my set through the software using my computer speakers?

    If you want to listen to the sounds of your drum set, you should use an audio cable and connect it to the computer's line-in, then create a real instrument track.
    If you use a Midi/USB interface, you'll have to create a software instrument track and select one of GB's drumsets as the instrument. Hopefully your drumset's midi notes are mapped to the right sounds in GB.

  • I gifted a ringtone to my sister that I purchased from the iTunes store, and it is on her phone, but we can't figure out how to get it moved to her ringtones.  Can anyone help?

    I gifted a ringtone to my sister that I purchased from the iTunes store, and it is on her phone, but we can't figure out how to get it moved to her ringtones.  Can anyone help?

    Edit > Preferences.  Select the check box for Ringtones, this will add them to the listing in iTunes. 
    Not sure that really answers your question though.

  • I am having trouble setting up icloud it keeps sending me back to install instructions and I'm just getting frustrated. So far I'm not liking the new itunes I can't figure out how to  look at my duplicate music like I used to.

    I can't sign on to icloud. It says I need an icloud account. I click the help option it send me back to the same page. I reinstall it nothing.
    Download the iCloud Control Panel.
    To enable iCloud on your Windows PC, first set up iCloud on your other devices, then install the iCloud Control Panel for Windows (Windows Vista with Service Pack 2 or Windows 7 required).
    ok I can't seem to set up iCloud on any device I don't understand... Ive already installed it three times.
    Turn on iCloud.
    From the Windows Start menu, choose iCloud Control Panel.
    Enter the Apple ID you used to create your iCloud account and select the iCloud services you’d like to enable.
    For mail, contacts, and calendars, you can use iCloud.com or Outlook 2007 or later.
    there is no iCloud control panel but I click on i cloud. Then entere the Apple ID you used to create your iCloud account - WHAT!!!!? where is this I keep trying to find out how to create and iCloud account but I keep getting these stupid directions!!!
    Enable automatic downloads.
    To enable automatic downloads for your music, apps, and books, open iTunes > Edit > Preferences > Store and select Music, Apps, and Books.* (Requires iTunes 10.5 or later.)
    - This is the only step that makes sense and already did it...
    Turn on iCloud for the rest of your devices.
    To get the most out of iCloud, set it up everywhere.
    This is soooo frustrating!!!!
    Also I want to be able to look at duplicate songs on my itunes but after I downloaded the new version I can not figure out how to get that back. If the duplicate setting isn't in the new itunes I want the old version back.

    Did you ever resolve the iCloud problem.I am in the same position and its driving me mad!!! If you have a link to an solution I would appreciate it.

  • I can't figure out how to import my native instruments into the library

    I'm trying to use Komplete 8 as a plug-in and I can't figure out how to put it in to library.

    Load the plugin into the insert, select your patch and then select "save as" from the channel strip menu.

  • I can't figure out how to sync my songs I downloaded to my itunes?

    I downloaded songs to itunes on my computer.  I can't figure out how to sync them to my ipod.  It says to click devices and pull up my ipod, but there is no "devices" listed, though I have registered, etc.?

    Connect your iPod to the computer with the provided cable.
    Open up iTunes.
    You should see your iPod in the Device list.
    Click on it.
    Choose what you want to sync to your iPod and then click Sync.

  • I can't figure out how to get my music to shuffle on my iPhone 5s. If I try to skip a song, it skips about 100 songs. It only ends up playing 4 or 5 songs then goes back to the song menu. Help please!

    I can't figure out how to get the music on my iPhone5s to shuffle. If I use the arrows to skip a song, it shuffles through a handful of the same songs then goes back to the song menu. Help please!

    Un-sync all your music to remove it from the device, then restart (hold down the home button along with the sleep/wake button until you see the apple, then let go). Now re-sync your music.

  • I can't figure out how to resize my picture for my home or lock screens.

    I can't figure out how to resize my picture for my home or lock screens. It shouldn't be his difficult. Any suggestions? I'm running the latest software. Thanks.

    whichever app store you are connecting to, hyou need a credit card with an address in that country. Also, itunes gift cards must be in local currency too.
    If you are in japan, you need to use the japan app store

  • I can't figure out how to transfer my albums on my iphone to photo stream so that I can see them on my apple computer. It did not automatically sync.

    I can't figure out how to transfer my albums on my iphone to photo stream so that I can see them on my apple computer. It did not automatically sync.

    kellyfromdanville wrote:
    I am new to Apple!
    Ah, new to routers too.
    Perhaps it's best to have a local computer support person come set you up?
    To explain everything would require writing a book here.
    But this is what you want basically.
    Router, new Wireless N, firmware updated.
    1: Two accounts, one admin, one guest Internet access. Random +30 plus character lenght passwords each preferred.
    (guest password to max password length of any iDevices)
    2: Encryption: WPA2 AES. No Ping. No remote access. No MAC filtering. Visible.
    3: Guest access on devices and computers only.  Passwords written down and stored.
    4: OpenDNS preferred but not mandatory.
    If you get OpenDNS, you can log into their website for free and set parental controls on things like inappropriate sites for children. So whatever device is used on your network can't access a large portion of those sites (nothing is perfect) by most users who are not technical oriented.
    What your doing now is running the bare bones unsecure router which can be used harmfully against you.
    Even a Apple Airport router has to be very well secured. The defautl cd and out of the box setup is not a secure solution.

  • I am trying to connect my new iMac to my Buffalo router.  I forgot my router password, so I reset it and it is working.  I can't figure out how to reset my router password and lock it on my iMac.

    I am connecting my new iMac to my Buffalo router.  I forgot my router password so I pushed the reset button and my computer was able to connect.  The problem is, I can't figure out how to set my new password and lock the router.  I went to the Buffalo website and downloaded the CD, as I can't find that either.  I can't open any of it because it says it is Windows and can't open it.  I am new to Apple!

    kellyfromdanville wrote:
    I am new to Apple!
    Ah, new to routers too.
    Perhaps it's best to have a local computer support person come set you up?
    To explain everything would require writing a book here.
    But this is what you want basically.
    Router, new Wireless N, firmware updated.
    1: Two accounts, one admin, one guest Internet access. Random +30 plus character lenght passwords each preferred.
    (guest password to max password length of any iDevices)
    2: Encryption: WPA2 AES. No Ping. No remote access. No MAC filtering. Visible.
    3: Guest access on devices and computers only.  Passwords written down and stored.
    4: OpenDNS preferred but not mandatory.
    If you get OpenDNS, you can log into their website for free and set parental controls on things like inappropriate sites for children. So whatever device is used on your network can't access a large portion of those sites (nothing is perfect) by most users who are not technical oriented.
    What your doing now is running the bare bones unsecure router which can be used harmfully against you.
    Even a Apple Airport router has to be very well secured. The defautl cd and out of the box setup is not a secure solution.

Maybe you are looking for

  • Wat is the use of Advance tab in obiee

    hi all , What is the use of advance tab , and that xml thing .. can any one tel me about it Thanks

  • Converting Date-Time to Long Date in a string that is stored in a formula

    The following are 2 verions of formulas that I've tried in placing the long date on a report.  I want the JUD_T_MEETING_NOTICE.MEETING_DATE to be displayed on the letter if Outcome_ID = 3.00 as April 29, 2009.  The field's fomat in the table is 04/29

  • SAP ME Tool Functions

    Hi experts, I am currently looking at tool related functions in SAP ME while I have found two questions. 1.  Is there any OOTB reporting function for tools maintained for the site? 2.  Is there any message type that can help to create message when th

  • Steps for Getting Repository Reports to Work in SCM 9024

    Have installed Des9i/SCM 9024. With this install, repository reports are not installed without the base release of O9iDS R2. What are the exact steps for getting the Designer Repository Reports to work via the RON in SCM 9024? Basically, I would like

  • Why the wifi doesn't work after the upgrade to iOS 5?

    The problem is that after the upgrade to iOS 5 the wifi doesn't work. I mean, iPad is connected to the wifi but not to the internet and also the connection on the other device doesn't work. So I had to turn off the router and then turn it on.