Doing Some Restapi And Stuck On Something

Aug 7, 2009

I doubt anyone has specific experience related to this particular task, but maybe you can spot my problem. I'm trying to make a call to lithium (forum software) to place a vote in their poll, and their docs show this:[code]I'm not able to successfully register a vote and they say it's because the poll.choice param is not appearing in the header, but if I step through debugging, I see it in the Header Keys/Items just fine.

View 1 Replies


ADVERTISEMENT

NetPay Variable Is Stuck On 0

Apr 20, 2012

I'm completely stomped with the payroll program I have created. The NetPay variable is stuck on 0 and I went through step mode to try and fix it. No luck so far. Additionally I'm trying to turn the whole numbers, that the users input into the form, into percentages(such as 10 into .10, 25 into .25 ect..). Tried 1/x and (x * 10^-2) [code]

View 3 Replies

Stuck Understanding OO Concepts?

Dec 14, 2010

so i have a class called FOOTBALL,then another 3 classes/forms that inherit FOOTBALL, they control score (SCOREBOX), possession (POSSBOX), and quarter (QUARTERBOX).the FOOTBALL class has 4 variables, "score" (array of 2 ints), "teams" (array of 2 strings), "possession" (boolean), and "quarter" (int)after that i have another form called MAINBOX, which creates new instances of the 3 classes (SCOREBOX, POSSBOX, and QUARTERBOX) (like this: private scoring = new SCOREBOX)... however they all technically create their own FOOTBALL classes, so I cannot connect them.

View 4 Replies

Stuck With An Odd Stack Overflow?

Oct 27, 2009

I'm writing this program in Visual Basic .NET to organize different fields of data, and I'm using profile slots through application settings to store the data for users. But, I ran into a stack overflow error in my SlotSelect.vb class. My best plausible guess for why this happens is that I'm using the wrong kind of variable container in the below sauce code, but my dilemma is that I don't know what specifically is going wrong.The code that the vshost is saying is the cause for the overflow was written from some code that I looked up on MSDN and other places for referring to objects in other classes, and I tried using other variants of it to see if it was any different. So far, nothing has worked, and it doesn't stop the error while compiling, much less in the code markup--it only catches it when it starts the application in debug after it finishes building

View 7 Replies

The DateTimePicker Stuck Form?

Mar 11, 2010

i am using Visual Studio 2008 and VB.NET 2008 and SQL Server 2005 as the database. I just finished designing & writing codes for a customer's contract information and , however after it has been connected to the database only one of the datetimepicker can be click, (i put 2 datetimepickers to find date interval) and the rest of the function including in the form are not working! it seems that the form stuck and NOT responding. i cant even close the form using the X button, so i have to stop the process using compiler (visual studio 2008), however if i press the 'Delete' button before the 'Add' button, it will successfully delete the data..

View 4 Replies

Variables Are Stuck At An Assignment Of Zero?

Feb 27, 2012

I've got one for you. I am working on a program that calculates the cost of a trip given a specific price of a Workshop say "Handling Stress for $595" the length of the workshop say "3 Days" and the city the workshop is in say "Austin for $95/day" now the issue i am having is that for example my NumDays variable (the variable for the number of days of the workshop) is not taking the value. Ive ran a Watch on the variable and it stays at 0. It also displays zero. i have assigned it an integer so it should be working if I assume correctly.

[Code]...

View 4 Replies

VS 2008 Stuck In One Big Loop?

Aug 12, 2010

The problem is that the code is in a loop which i'm not sure how to stop.The need the text file to read all the file extensions.So i start looping through all the files in a folder.The other problem that happens is that i also need to loop through all the files in the folder so that i can compare the string line and the string X. So the final result is that my program is in one giant loop.

[Code]...

View 2 Replies

VS 2010 IM STUCK On Structures

Sep 15, 2011

These are the instructions. Create a Visual Basic program that reads in baseball player information from a form and holds all of the player information for an entire baseball team (20 players). A baseball player consists of a first name, last name, number, position, and batting average. The form should contain 3 buttons Add Player, Display Players, and Exit.

[Code]....

View 6 Replies

Programs Without Sense But Stuck On New Program?

Apr 7, 2010

Im new to programming and I started by grabbing some code here and there from various internet sites. I made some little programs without sense but Im stuck on my new program.

[Code]...

View 6 Replies

Still Stuck On Multiple String Search

Jun 18, 2011

I've used an OleDbAdapter to connect to a MS Access database with about 17 fields. I want to be able to search between 1 and all 17 fields for return(s). I have been able to search 3 fields so far (so all 17 will not be a problem), but all 3 fields must be completed or an error occurs (FileNotFoundException was unhandled).[code]...

View 9 Replies

Stuck At The Error NullReferenceException Was Unhandled?

Mar 25, 2011

Private Sub btnSendMsg_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSendMsg.Click
Dim con As New OleDb.OleDbConnection

[code].....

View 1 Replies

Stuck On Socket Message Receive?

Feb 19, 2012

My client program gets stuck on NetworkStream.Read even though the server is reporting it's sending the message. The client and server are running on the same computer.Full server code (console application)

Imports System.Net.Sockets
Imports System.Text
Module Module1
Sub Main()

[Code]...

View 1 Replies

Stuck Trying To Convert A String To Decimal?

Aug 1, 2009

i'm a little stuck with a personal project, i'm interfacing a MiniBee usb output card to my pc and having a few code problems, i am trying to control outputs 1 to 8 which requires a decimal number that relates to the binary pattern of the ouputs if that makes sense i.e

1 = output 1 on
2 = output 2 on
3= output 1 and 2 on
etc etc

So, i figured the easiest way to individually control outputs was to use public boolean vars Out1 to Out8 so i can use those anywhere in the code and use a form timer to trigger the updating of the output

So the bit im stuck on is i've done a test using 8 checkboxes to set Out 1-8 as true/false

[Code]...

View 7 Replies

Stuck Trying To Create An Async Method

Oct 8, 2010

For the last week I've been trying to create an async method. I tried the MSDN article How to: Implement a Component That Supports the Event-based Asynchronous Pattern but it does the work in a method in the same class. The work I'm doing is a lot more complicated and is its own class. The problem I'm having is the class doing the work cannot post the progress or completion as the methods that handle this stuff is in the parent class.

View 2 Replies

Wait Cursor Is Stuck On For A Numericupdown

Dec 13, 2010

The wait cursor cannot be changed for a numericupdown for which i have a _valuechanged private sub.

how to set it to the normal cursor?

View 1 Replies

Bubble Sort Gets Stuck In An Infinite Loop

Apr 22, 2012

I'm bubble sorting an array called number which starts at (1) and ends with (6), the code I'm currently using is this:[code]

View 2 Replies

Stuck While Uploading Image File In SQL Server

Jan 27, 2010

Here is the code I used. everything works fine, but i need a little different code to upload image.

Private Sub btnAttach_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles btnAttach.Click
Dim iLength As Integer = CType(File1.PostedFile.InputStream.Length, Integer)
If iLength = 0 Then Exit Sub 'not a valid file
Dim sContentType As String = File1.PostedFile.ContentType
[Code] .....

I am not using with cmdinsertattachment. I am using Html - Input(File) from the HTML toolbox. the ID of the input file is ID="upldimg". So how do I insert this into my table which is -
Column1 ID identity
Column2 Img image
Column 3 Description varchar(200).

The insert statement like -
INSERT into table1 (Img, Description) values (???, txtdescription.text)
Do I do upldimg.text in the insert statement?

View 1 Replies

Visual Studio 2010 - .Net App Stuck In Loop?

May 23, 2011

I would just like the program to end itself. Application.Exit just keeps rolling me back in a loop.EDITED to Include Code::

[Code]...

View 2 Replies

VS 2005 - Dialog Cancel Stuck In A Loop

Jan 13, 2010

The following code works fine, however if the user wants to cancel out from the openfiledialog they cant they are stuck in a loop. A loop I created in case they selected the wrong type of data file they could choose again. [Code]. I really need some help seeing where and how to let the user cancel out without the program continuing. I tried some dialog.dispose code but everywhere i seem to put it it generates an error somewhere.

View 4 Replies

VS 2008 Making A Music Player (STUCK!)

Feb 18, 2011

im making a Music Player in VS 2008 and everything is basicly working perfectly as i want, however i seem to be stuck at the "Pause/resume button"

so my question is, in the Windows Media player COM Components, is there a code for Resuming the current state on the Mp3 file and id assume it would be resume,[code..]

View 6 Replies

VS 2008 Stuck At Error NullReferenceException Was Unhandled

Mar 26, 2011

[code] this is my code n i want to store data at runtime in the my database.i used data base as an access07 and my platform is vb.net..Now come to the point when i run the project it terminates when i'm inserting my data in the access file.[code]

View 4 Replies

VS 2008 WebBrowser Doesn't Load / Gets Stuck

Jun 28, 2011

I have a Webbrowser in my application, it loads the same page after it has finished loading every few seconds really. After a while it will either freeze halfway through loading (show only top half of page) or just not reload at all and stay on loaded page.

I originally tryed the .refresh method but didn't work good, then I tryed just the simple .navigate to the same page, works better but still same problem.

If I manually refresh it with F5 it will work as normal again for a period of time.

Also if I run it outside of the IDE it can crash and give me "flash.ocx not found, it's not included with this version of windows" or something, very strange.

Main prob is webbrowser gets stuck / wont refresh even tho the code is in the DocumentCompleted event.

View 1 Replies

Windows Services Hangs Or Is Stuck At Line

Oct 14, 2010

I'm trying to Debug and code an program in VB.net 2005 in windows XP. When I start my service and attach it for debugging it hangs at the line:System. ServiceProcess.ServiceBase. Run(ServicesToRun)The service says it is started under windows service dialog, but does not go further in the code, it just sits there..Does anyone have any solutions to this problem? I had this problem before but it usually start after a few moments,it seemed to get progresively worst, were now it doesn't progress at all, and just stays hung. [code]

View 6 Replies

Connect To Irc But Completly Stuck At Sending A PONG Back?

Nov 11, 2009

i'm trying to connect to irc but im completly stuck at sending a PONG back when i get a PING.i have tried to put an if statement checking if StreamR.readline = PING and then sending PONG + the value after ping back, but i just cant seem to get those numbers from ping.

[Code]...

View 6 Replies

Exchange Server Email Gets Stuck Drafts Folder Not Being Sent?

May 11, 2012

I'm trying to use an Exchange Server to send emails from asp.net web application and atm the mail is getting stuck in the drafts folder and not being sent.Emails are being sent fine if i send them using browser or outlook directly. Also if i go to the drafts folder and manually send the vb.net created emails they re being sent and received fine aswell, but that isn't a long term option.

[Code]...

View 2 Replies

Exchange Server Email Gets Stuck In Drafts Folder Not Being Sent?

May 11, 2012

I'm trying to use an Exchange Server to send emails from asp.net web application and atm the mail is getting stuck in the drafts folder and not being sent.Emails are being sent fine if i send them using browser or outlook directly. Also if i go to the drafts folder and manually send the vb.net created emails they re being sent and received fine aswell, but that isn't a long term option.Here is the relevant part of the code i m using.

Try
Dim service As ExchangeService
Dim service As New ExchangeService(ExchangeVersion.Exchange2007_SP1)

[code].....

View 3 Replies

Restart Machines Due To Stuck Files Or Folders Open?

Nov 3, 2010

I have been searching everywhere for help and cant find anyone or place nice enough to work with me.I work for a bank, and support 40,000 users as an admin on a team of about 20 people.We are always having to force log off users out of SQL and always having to restart machines due to stuck files or folders open, or for troubleshooting purposes. So i am working on an application that will log off and shutdown users from the network.I have the log off from SQL completed.However i am having trouble with the line for restart.I started off trying the shell command Shell("cmd.exe") and now i have switched over to Process.Start("shutdown")

If you have any admin experience on a full blown network or wan, you know that when using cmd or run the syntax is:shutdown -m \computername -r -f -t 00 where m is for listing computer r is for reboot f is forcing apps closed and t is for timer.I have to pull the workstation from a textbox inside our tool. Or at the very least input the workstation to the command prompt So when i try and place this into vb i am using this:

Process.Start("shutdown", "-m \""" & TxtBoxWorkstation.Text & """-r -f -t 00")However the whacks(backward slashes) are not correct in the code.Im trying to figure out where the whacks go in the line of code.Im not getting any errors in vb, but when the cmd prompt loads it does not initiate the command correctly because the whacks are in the wrong location

[Code]...

View 3 Replies

Stuck On Creating A Smaller Array Function Procedure?

Nov 20, 2011

I did this and no error or warning appears and when I run it only String[]Array appears in the listbox. can you help me fix this? I already have the logic down I am not sure how to fix this. My project is due tomorrow this is the only part I'm stuck on.

[Code]...

View 3 Replies

Stuck Saving Lots Of Strings To Read Later On In VB Project?

Sep 11, 2010

i am working on a project where i select from a list box what entry i want to change (out of a set of 27)and then i have to select the entry, enter the details in the text box, hit ok and then i was trying to make it store the string it made under a deceleration.

View 4 Replies

VS 2008 - Compiling Program Got Stuck On Older Version

May 29, 2009

I'm using microsoft visual studio for VB.NET 2008. When i compiling my program it's got stuck on older version of the program, i even change some of the label text in the design mode and it still loading the old label text, is any one ever had this problem before?

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved