480 Topics

Member Avatar for
Member Avatar for Adhya_1

So, my teacher gave me this assignment to write a program to enter a four digit number Andries each digit of the number in a separate line. For example, if a user inputs 1234, the output should be: 1 2 3 4 I'm stuck. Please help ASAP. We have learnt …

Member Avatar for Lucaci Andrew
0
244
Member Avatar for Miurei

How to pass Listview contents to a crystal report for printing purposes using VB net..? i got 1 listview which shows the results of some queries. Now my problem is how can i pass those data in my listview to the crystal report?

0
117
Member Avatar for JVAII

Hello everybody, I'm doing a colleague a favor by looking into a VBA formula to make her reporting tasks a little easier, poor her, but I need help myself now. this is how her tabsheet is set up: ![CVDV__tab.jpg](/attachments/large/4/d71dd2333b4335e71abd83448f735d91.jpg "align-center") this is how the end result should look like in …

Member Avatar for ddanbe
0
383
Member Avatar for pyguy25

Hello. I was wondering if anyone could help me with a caesar cipher program I am attempting to create. I was asked to write a caesar cipher encoder program. Ok. No problem. This is what i got: [code] import string def main(): print "This program will encode your messages using …

Member Avatar for FaZeSkwlSh00ter
0
7K
Member Avatar for keval_hack

[I]Interesting tricky program using C & C++: [/I] [B]Program 1:[/B] Create a Program which produce output "Hello World" , the program must not contains semicolon ; in other word any statement of the program will not have a termination semicolon. [B]Program 2:[/B] Write a C or C++ program which run …

Member Avatar for Ahamed_1
-1
2K
Member Avatar for DDoerschuk

I would like to ask for help on this problem that I've tried to troubleshoot, but have had no success at. The print spooler on a windows XP Home Edition SP3 machine is refusing to start. Previous to this problem, 5 or 6 printers had been configured and working for …

Member Avatar for nullptr
0
878
Member Avatar for Ahmed_65

I am using XML:twig to extract some attributes from an XML file using Perl; Here is my code: use XML::Twig; my $file = $ARGV[0]; $file =~ /(.+)\.xml/; my $outfile = $1.".snp" ; open my $out,'>',$outfile or die "Could not open file '$outfile' $!"; my $twig = XML::Twig->new ( twig_handlers => …

Member Avatar for 2teez
0
288
Member Avatar for wannas

Hi there, well, i have homework of packet sniffing software i'm not suppose to write the code,but i need to make a report of an existing code and explain it in details. I found the following code somewhere(the code should be of a packet sniffer) ,but i couldn't run it.I …

Member Avatar for Mahesh_14
0
5K
Member Avatar for francissumi

Hi all expert, Need help here. RS.Open "Select * From TABLE where Box_ID = '" & BOXID & "' Order By CASE_NO ASC", con1, adOpenDynamic, adLockOptimistic Set DataReport.DataSource = RS DataReport.Sections("section1").Controls.Item("Text1").DataField = RS("BOX_ID").Name DataReport.Sections("section1").Controls.Item("Text2").DataField = RS("LOT_ID").Name In my program i am able to printout the data field. But how can …

Member Avatar for francissumi
0
2K
Member Avatar for Tomi_1

Hey people! Im new to the community, i will contribute with doubts hehe, so i have this list of lists: TABLE =[["_","_","_"], ["_","_","_"], ["_","_","_"]] i want to print it so it looks something like this: 1 2 3 _ _ _ _ _ _ _ _ _ how can i …

Member Avatar for vegaseat
0
149
Member Avatar for sarahmalkawi

i want to write easy68k Assembly program to read two numbers each number have 20 digit , then multiply them together and finally print out the result ??

Member Avatar for ALI KHAYRI
0
123
Member Avatar for mrismich
Member Avatar for ranTHE

How to get current Selected Row in dataGridview and print using crystal report? Print Only selected current row in data gridview

Member Avatar for Mamoundi
0
9K
Member Avatar for mrismich
Member Avatar for Jordan_5

I have had some success with both ends of the spectrum. Mostly onlinethese days. How about the rest of you. Please share which makes you more sales.

Member Avatar for Vincentas
0
216
Member Avatar for Curious Gorge

I'm working on a simple encryption program (for school). It is not currently "homework" just FYI, I'm just practicing the examples in the book. It uses a Caesar's Cipher method (an alphabetical shift). I have not tested this code very much. If something is wrong with it I probably don't …

Member Avatar for Curious Gorge
0
237
Member Avatar for cambalinho
Member Avatar for Satyam_1

In vb.net application, I have a dgv. the data from dgv are transferred to textboxes when row are selected. I print these textbox as report using e.graphics. after printing perticular row data , that row is removed from dgv. (i filtered the dgv by "NotPrinted"). I want with a single …

Member Avatar for zelrick
0
276
Member Avatar for triplekkk

hi....i'm new in vb programming and need help to solve the programming problem ......i have write a script to read line input file, compute and then produce result but i have a problem to list up the result for an output....it's only print out the last output....actually i need to …

Member Avatar for SpectateSwamp
0
314
Member Avatar for DumbBlonde89

So my semester is almost over and I was dumb when I signed up for intro to programming distance learning, I thought I would understand it, but now I guess I know I can't. Anyways here is the problem. A speeding ticket fine policy in Podunksville is $50 plus $5 …

Member Avatar for Gribouillis
0
7K
Member Avatar for John_91

hi,friends i have 14 columns in my access data but i want print only selected colums help me frinds

Member Avatar for Begginnerdev
0
109
Member Avatar for Iin_1

Hi to all experts, i have a big problem here, i want to print data from my datagridview, when i select 1 row.. there is no problem, but when i try to print multiple row, just first selected row appear here is the code : private void button4_Click(object sender, EventArgs …

Member Avatar for ddanbe
0
2K
Member Avatar for BustACode

I have been learning NumPy arrays/matrices in Python. As I worked, I found that I desired a more readable form of 3d matrices. So I figured that writing one would be a good goal and learning exercise. The goal was to create a function that would print 3d NumPy matrices …

0
3K
Member Avatar for jakson321

Instruction: You must use pointers for this lab. No arrays, no structures. For example, if you need an array of floats to hold the scores, do not use float score[15]. Rather use float *score, then use dynamic memory allocation to hold required memory. You must use memory optimally, that is …

Member Avatar for David W
0
1K
Member Avatar for 9ja boy

Write a java program that accept two numbers from the user and print out the following sample out first number: 7 second number: 2 the second number goes in to the first number 3 time with a remainder of 1.

Member Avatar for JamesCherrill
-1
327
Member Avatar for Slass33

I'm doing a multi-line string saved to the variable str: str = """ This is a multiline string """ When I `print str` it works fine. But if I print a different multiline string: ` str = """ This is a multiline string """ print str # Works Fine str_2 …

Member Avatar for megaflo
0
185
Member Avatar for Satyam_1

I have put digital signature as picturebox in vb.net form To print the picturebox, i used following code. But the print of signature is very light in color. How can i improve the or darken the signature. The code in print document event is E.graphics.DrawImage(Me.PictureBox1.Image,50,100,100,50)

Member Avatar for Mr.M
0
481
Member Avatar for Satyam_1

I have vb.net application. I have following code to print dgv. but when i print, all the page get printed. How can I print selected pages to be printed with pagesetup. Public Class Form2 Dim mRow As Integer = 0 Dim newpage As Boolean = True Private Sub Button1_Click(ByVal sender …

Member Avatar for Satyam_1
0
1K
Member Avatar for blueguy777

the if condition is not executing and unable to print result, there is a blank page. <?php $url = $_SERVER['HTTP_HOST']; $url_length = strlen($url); if(substr($url, 0, 4 ) = 'www.') { $url_length = $url_length - 4; $url = substr($url, 4, $url_length); } echo $url_length.'<br />'.$url; ?>

Member Avatar for diafol
0
122
Member Avatar for Niloofar24

Hello. There is a text in my Python script that is in Persian language and the letters are from left to right, but in Persian language letters should be written from right to left. What should i do now to fix it and print it in UTF-8 format?

Member Avatar for megaflo
0
366

The End.