- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
37 Posted Topics
So heres my issue: My works VB program uses Code 3 of 9 to put a barcode on a members card; This issue only pertains to one computer, all other networked computers print member cards just fine with the barcode on them. BUT, when I go to print a member … | |
Hello all! I have a huge headache over this issue so ill just get right into it, the clients just got new windows 7 pro machines, they were using windows xp machines with no issue with this custom vb app, heres the error that pops up when they try to … | |
I have two tables, table_1, and table_2. I am trying to query both tables, I want every column that is in table_1, and only one column from table_2. Each table has an AccountID column, so they can relate to eachother. I am trying to get a query result that gives … | |
Heres my statement: SELECT A.AccountID, A.LastName, (SELECT SUM(InvCurrency) FROM B WHERE B.BillingPeriodStart Between '2012-01-01 00:00:00.000' AND '2012-12-31 23:59:59.000' AND A.AccountID = B.AccountID AND StatusID = 1 AND (ServiceCode=13 OR ServiceCode=14) AND (ServiceCode=15 OR ServiceCode=16) AND (ServiceCode=17 OR ServiceCode=18) AND (ServiceCode=19 OR ServiceCode=20) AND (ServiceCode=21 OR ServiceCode=26) ) AS 'Paid' FROM … | |
daniwebbers, This is my issue. I need to back up one server, that has server 2008 r2 installed. It does have sql server 2008 installed, but I successfully back up our databases every day so that is not an issue. In the event viewer this is the error I am … | |
Hello all, We have a server with windows 2003 sp2 on it. My machine is running windows 7. Im trying to figure out why I cant remote in after the other I.T. guy was messing around in the server. The servers firewall has the exception to all remote connections, Remote … | |
Whats up Daniwebbers, heres my issue: I gotta .asp file, opened it up in VS2010. The report is having an issue with totaling up a column and displaying it. The report generates perfectly, but when I look at the USED TOTAL cell at the end of the report, it is … | |
Re: To connect to sql databases the namespace in C# is this: using System.Data.SqlClient; As far as what you said: >" getting data from "db" with 20mb size or search in "db1" with 10mbsize and if there is no result search in "db2" with 10mb size" As far as coding goes, … | |
I am trying to figure out a solution to my works backing up issue and came here for a second opinion. This is my approach: 1. do a full server backup(o.s., programs, etc.) and put that backup on an external drive. 2. Sign up with Carbonite to perform file backups … | |
Re: try catch block does not slow down your program at all and is basically a standard for catching exceptions. Try Catch statements is basically your safe net when it comes to bugs in your code/program. Without them, it would be fairly hard to know why your program is all of … | |
Re: This is a shot in the dark as you have not specified any code that you are using to validate the users login credentials, but under the method in which your code validates the users credentials(username and password) simply set the label1.Text = usernameTextBox.Text. So after the validating is complete … | |
Re: This would actually only be one query: SELECT column_1 as myNewColumn from table1 UNION SELECT column_2 as myNewColumn from table2 Once again, this is a SINGLE QUERY STATEMENT,highlight the whole statement and execute. Enjoy. | |
Hello all, I have a vb app that cannot find the reference specified. I am using VS2010. The only error I have is this: Error 2 Encountered multiple versions of the assembly with GUID '00020813-0000-0000-c000-000000000046'. Try pre-importing one of these assemblies. C:\Users\Anonymous\Desktop\Waynoka Apps\Waynoka Management\Waynoka Management\TlbImp Anon Management The reference is … | |
Hello all, Im working in VS 2010. The program is up to date btw. My Warning message when i try to debug my VB app : "Warning 10 The referenced component 'DAO' could not be found." The COM reference in question is: Microsoft DAO 3.6 Object Library Version = 5.0.0.0 … | |
Re: my advice is to step through the code and figure out what your "LevelofAccessTextBox.Text" equals. Then come back here to update your issue. | |
hey guys, So my works app uses a .rdlc file to print a membership card, and looks for a up to date .rdlc file to use as the template. i have VS2010 Pro installed. The other programmer created this program and published it in an earlier version of VS. Heres … | |
Hey guys, Heres what my app is trying to do: Print a members card Heres my code: [CODE]Me.AccountsTableAdapter.Connection = mainConnection Me.AccountsTableAdapter.NewQuery(Me.WaynokaDataSet.Accounts) With Me.ReportViewer1 .LocalReport.ReportPath = "G:\Bin\Waynoka Management\MemberCard" & varCardYear & ".rdlc" .LocalReport.DataSources.Add(New Microsoft.Reporting.WinForms.ReportDataSource("WaynokaDataSet_Accounts", dsReportList.Tables(0))) .SetDisplayMode(Microsoft.Reporting.WinForms.DisplayMode.PrintLayout) End With Catch ex As Exception System.Windows.Forms.MessageBox.Show(ex.Message) End Try[/CODE] The title is the error it … | |
Heres my issue my fellow coders: My works VB program uses some .asp files to create reports. This is the error I am getting: Microsoft VBScript runtime error '800a000d' Type mismatch: 'ubound' /reports/wpoa_trans_summary.asp, line 238 I navigated to line 238 in the asp file and here is the code: [CODE]if … | |
Hello all, This is my problem, I currently have a building location where my work offers wifi. I have built an app for them that connects to our sql database. My work wants the app at that location where wifi is offered to the public. Currently there is free wifi … | |
Re: int[] nums = { 1, 23, 456, 78910 }; // loop through int array with for loop for (int i = 0; i < nums.Length; i++) { // Assign string reference based on induction variable string value = nums.ToString(); // Display each variable in array MessageBox.Show(value); } } Hope this … | |
Whats up guys, So I am debugging my companies program that the previous programmer has created. It is buggy and an annoyance in my life and I want to get this done as quickly as possible. Ive already fixed some bugs and published the updated version onto our server. HERE … | |
I am trying to publish this program. I rebuilt it, then hit publish. It starts, then at the end its throwing up 18 errors and they all look similar to the error below. About 15 of the other errors end in .dll.deploy. Ive never seen this type of error before … | |
Hello all, I am debugging a vb app for my company. I did NOT create this app. So far there is just one thing that has been bugging me, AxctlUSBHID.AxUSBHID. Heres the code and the error im getting for each section. There is only two errors. (1) [CODE]Private Sub InitializeComponent() … | |
Hey guys, So at my company there are two i.t. guys, me and another dude, but he does not have the time, nor brain to teach me a couple things for connecting to out sql database for my app so I have to go online. Im having real trouble as … | |
Does anyone know how to create a custom report for the data that is in a datagridview? My app is nearly complete but would like to spice it up a bit and be able to create a report button,that, once clicked, creates a simple report. I only need one specific … | |
So heres my code: using (SqlDataReader reader = cmd.ExecuteReader()) if (reader.Read()) SearchingDate = (DateTime)reader[0]; The third line of code is where im stuck. In my app, im trying to compare the current datetime against the value of a members date column value. Unfortunately, the third line of code sets the … | |
Hello all! So in my app, I have 5 columns, firstname,lastname,membership,accountid, and date. Once a members card has been scanned, the app figures out if that member is in my sql table or not. If he/she is, it will update their 'date' column in my dgv. If he/she is not, … | |
So heres my problem: I have a datagrid w/ 5 columns(ID, firstname, lastname, Membership, Date). My app takes a 5 digit number from the user and with that number populates my datagrid with the members information. My BIGGEST problem is trying to check to see if the member is already … | |
Hello peeps, This is really getting annoying, Im trying to figure out how to check whether or not a member is in my datagrid. I have 5 columns: firstname, lastname, membership, accountid, date. Can someone help me out here???????? | |
Re: You should put any file that is needed in order for your app to run correctly/properly. What are you confused about specifically? .dmg files are disk images, and for mac thats how the os installs programs. With that said, you should compile your app and publish it, test it, then … | |
Re: Hope this helps: // sort int array int[] intArray = new int[5] { 8, 10, 2, 6, 3 }; Array.Sort(intArray); // write array foreach (int i in intArray) Console.Write(i + " "); // output: 2 3 6 8 10 // sort string array string[] stringArray = new string[5] { "X", … | |
Re: To me this line of code is useless: Outside.Inside Ins = new Outside.Inside(); As its just declaring a new object of a class that is in a class. Dunno why you would have a class inside a class like that. Inside. Show() would display this: Show me the wonderful world … | |
So this is my problem my fellow programmers: In my C# app, I have one button and a datagrid that is showing info from a sql table. Everytime I add a person into my datagrid, the data replicates instead of updating certain columns for that member. I need to somehow … | |
I am having a problem with my C# datagridview. When I add data into it, it doesnt auto update. And nothing I found online works to update the view for the user during runtime. I've used refresh(), update(), invalidate(). Nothing seems to work. Can anyone help me out with this … | |
Hello there, I am having trouble with my C# datagrid. Im working with sql. I have four columns in my datagrid: firstname, lastname, membership, date. So heres the design behind my app. Employee scans a card, hits update. Info pertaining to that member gets pulled from the sql database, then … | |
Hello all, I am wondering is there anyway to get user input without using a textbox? Or is there anyway to hide a textbox and still get user input into and out of it? I need to get user input but am finding it hard to get it without using … | |
Hello all, This is my first post here.Woohoo! Seems like an awesome place to collaborate. So heres my issue, thread title explains pretty well though. I have a C# app that I am working on, and I have a datagrid and one button in the UI. Heres me ISSUE: I … |
The End.