- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
27 Posted Topics
Good morning, so I'm hoping anyone can help me, I'm planning this app, but I'm still searching if it's possible to be done or not. My question is the following: Imagine I'm in Spain, and I would like to get all the Network Operators in Spain. Is it possible to … | |
Hi everyone, so I'm developing this app for android, I'm using "Android Studio" to code it and it's layout, but there's the thing, I can't seem to make the layout as I want, like the buttons are too huge or they aren't in the correct position and they're always messed … | |
Hello, I'm building this app, which requires a Camera, but it is not working, it doesn't show anything except the design, here's teh code: Camera c = null; public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.qrreaderscreen); SurfaceView v = (SurfaceView) findViewById(R.id.v); SurfaceHolder surface_holder = null; v = new SurfaceView(getApplicationContext()); if (surface_holder … | |
Good afternoon, I'm trying to develepop an app which requiers to read a QRCode, any help would be appreciated. | |
Hello everyone, I am trying to create a thermometer, i do have an idea of how to make it, not sure if it is correct, but here it goes: I have an image of a thermometer, and i would apply a mask(Rectangle), and it's width and X would vary. I'm … | |
Good day, I'm building up a project in "AIR for Android" (AS3), it consists in connecting a camera(Fully functional), then do it like a game in PSVITA, cut only the face of a person after taking a picture of herself, i'm having a hard time developing this part. I downloaded … | |
Re: form1.size = new Size(Screen.PrimaryScreen.Bounds.Width,Screen.PrimaryScreen.Bounds.Height) I believe that's what you want. Hope it helps. :) | |
Re: You have to use it in the Keypress Event. Or else it won't work. | |
Re: Hello, Try this: datagridview1.Add(Textbox1.text) Hope this helps. | |
Re: try if (num < 100) CODE Catch msgbox("INVALID NUMBER") I believe it's something like that, hope this helps. :9 | |
Re: if (RadioButton1.Checked) { Form30.Show(); } I believe that is what you want. If not say something. Hope this helps. :) | |
Re: Hello, i don't know much, but i know enough to know you have some syntax errors... i think. If(form1.Visible=true)Then { form1.Textbox1.Text = Textbox1.Text //And So on for any field that i wanted } In C# you need to use 2 = "==" or else you'll get some errors. You don't … | |
Re: Hello, I found this, haven't tested it, but it might work: public void ClearTextBoxes(Control control) { foreach (Control c in control.Controls) { if (c is TextBox) { ((TextBox)c).Clear(); } if (c.HasChildren) { ClearTextBoxes(c); } } } Hope it helps. :) | |
Re: Hello, I'm not sure but try something like this: form2.dataGridView1.CurrentRow.Cells[0].Value = comboBox1.SelectedIndex.Value; Or: form2.DataGridView1.Add(ComboBox.SelectedIndex.Value); Like i said im not sure, but maybe that will help you. | |
Re: Greetings, well i'm curently developing a FF type game, the only dropping action there is is the mob loot, but it might help you, what i have is: -Create a list and ammount of items variables; -Check if item already exists in invetory, if it does, Raise the ammount; i … | |
Re: If you don't mind using cracked software, i advise you to download Driver Genius (The cracked one) from torrent, and scan your computer, it will find all the drivers for your windows and hardware. If it helps, good. If it doesn't i'm sorry for wasting your time. :) | |
Re: Button_Click Form99.Button3.Enable = False Is that what you want? | |
Re: Greetings. What's not working? In what line of code does the error appear? if it appears. We need more information. | |
Re: Hello, Let me see if i got this right, you want to use the pictureboxes as textboxes, and then pass the value from one of the pictureboxes to the textbox? | |
Good morning, I'm having some trouble getting this to work, but i am using 1 color filter to detect a color in my webcam video, but to achieve what i want, is it possible to use 2 color filters? Thank you in advance. | |
Re: Hello, For the drawing part, you need to create a variable "As Graphics", then you use that variable to draw whatever shape you want Example: myGraphics.DrawRectangle(pen:=myPen, rect:=myRectangle) Or, you can create a variable "As Rectangle" and use it like this: myRectangle = New Rectangle(Location:=New Point(10, 10), Size:=New Size(Width:=20, Height:=60)) Best … | |
Re: Hello, Try using the framework "AForge" it's a really good framework, let's you do a whole bunch of cool stuff. Also, take a look at this example: http://stackoverflow.com/questions/1789684/webcam-calling-in-xna | |
Good morning, So i was finally able to solve all the errors in my game, but now i can't seem to get a Motion Detector to work using Aforge, so far i've got: private void device_NewFrame(object sender, AForge.Video.NewFrameEventArgs eventArgs) { tmpImage = eventArgs.Frame.Clone(Rec, PixelFormat.Format24bppRgb); Bitmap image = (Bitmap)tmpImage.Clone(); //BitmapData bitmapData … | |
Good morning, I'm coding a game which ovject is to capture the feed of a webcam, then apply some filters to detect movement, so far i've managed to get the webcam to work but when i apply the filters it says "Bitmap locked" i've managed to solve that error, right … | |
Good afternoon, I'm having somee trouble with a functional application, the only thing missing is switching the motion regions with an image. Any help is higly appreciated. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Drawing.Imaging; using System.Text; using System.Windows.Forms; using System.Threading; using AForge; using AForge.Imaging; using … | |
Good morning, Here i am again, asking help to all of you that are able to help me, my problem is the following, i translated some code from C# to VB, mas the code in C3, what it does is change the wallpaper and it's style for Windows Starter, but … | |
Good morning, I'm having some difficulties fixing a problem, I need to allow permissions for a user to change the wallpaper but i can't seem to get it to work, i hope you can help me. :) Here's the code : [CODE] Dim RespostaMess As MsgBoxResult = MsgBox("Tem a certeza … |
The End.